We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ca94cc commit b5ee369Copy full SHA for b5ee369
runtime/runtime-core/native/src/aws/smithy/kotlin/runtime/time/InstantNative.kt
@@ -66,7 +66,7 @@ public actual class Instant(internal val delegate: KtInstant) : Comparable<Insta
66
* Parse an ISO-8601 formatted string into an [Instant]
67
*/
68
public actual fun fromIso8601(ts: String): Instant {
69
- val parseException = ParseException(ts, "Failed to parse $ts into an ISO-8601 timestamp", 0)
+ val parseException = ParseException(ts, "Failed to parse $ts into an ISO-8601 timestamp", 0)
70
71
listOf(
72
{ DateTimeFormats.ISO_8601.parse(ts).apply { if (second == 60) second = 59 }.toInstantUsingOffset() },
0 commit comments