Fix typo in Timestamp LF conversion error message (#18995)

This commit is contained in:
Artúr Poór 2024-04-19 14:11:41 +02:00 committed by GitHub
parent ce2af18d15
commit 280f0b5a44
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -182,7 +182,7 @@ object Time {
s: String,
rounding: RoundingMode = DefaultRounding,
): Either[String, Timestamp] =
safely(assertFromString(s, rounding), s"cannot convert sting $s into Timestamp")
safely(assertFromString(s, rounding), s"cannot convert string $s into Timestamp")
def now(): Timestamp = assertFromInstant(Instant.now(), DefaultRounding)