Skip to content

Commit

Permalink
Fix typos in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
szymonkozak authored Oct 31, 2017
1 parent 226b590 commit b9d15a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ val tenSeconds = 10.seconds
val fiveMinutes = 5.minutes
val twoHours = 2.hours
val threeDays = 3.days
val tenMinutesFromNow = Calender.getInstance() + 10.minutes
val tenMinutesFromNow = Calendar.getInstance() + 10.minutes
val tenSecondsInMilliseconds = 10.seconds.inMilliseconds
```

Expand Down Expand Up @@ -76,7 +76,7 @@ val doubled = duration * 2
val seconds = 10.seconds + 3.minutes // Interval<Second>
```

You can also use these operations on `Calender`:
You can also use these operations on `Calendar`:

```kotlin
val twoHoursLater = Calendar.getInstance() + 2.hours
Expand Down

0 comments on commit b9d15a2

Please sign in to comment.