make message universal to all timeSystems

This commit is contained in:
David Tsay 2024-07-10 18:22:01 -07:00
parent fbf145c240
commit eb314a6fab

View File

@ -196,7 +196,7 @@ class TimeContext extends EventEmitter {
} else if (bounds.start > bounds.end) { } else if (bounds.start > bounds.end) {
return { return {
valid: false, valid: false,
message: 'Specified start date exceeds end bound' message: 'Start bound exceeds end bound'
}; };
} }