Skip to content

Commit cf14aa5

Browse files
parse merge fix
1 parent 2bcccac commit cf14aa5

File tree

1 file changed

+1
-1
lines changed
  • core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/impl/api

1 file changed

+1
-1
lines changed

core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/impl/api/parse.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ internal object Parsers : GlobalParserOptions {
214214
.parseOrNull(this)
215215
?.toInstantUsingOffset()
216216
}
217-
// fallback on the java instant to catch things like "2022-01-23T04:29:60", a.k.a. leap seconds
217+
// fallback on the java instant to catch things like "2022-01-23T04:29:60", a.k.a. leap seconds
218218
?: toJavaInstantOrNull()?.toKotlinInstant()
219219

220220
private fun String.toJavaInstantOrNull(): JavaInstant? =

0 commit comments

Comments
 (0)