Skip to content

Commit 8d26763

Browse files
authored
Improve wording an example (#252)
1 parent a20f501 commit 8d26763

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ by converting it to `LocalDateTime` and taking its `date` property.
140140
```kotlin
141141
val now: Instant = Clock.System.now()
142142
val today: LocalDate = now.toLocalDateTime(TimeZone.currentSystemDefault()).date
143-
// or more short
143+
// or shorter
144144
val today: LocalDate = Clock.System.todayIn(TimeZone.currentSystemDefault())
145145
```
146146
Note, that today's date really depends on the time zone in which you're observing the current moment.

0 commit comments

Comments
 (0)