Change "can durations" to "can add durations"

This commit is contained in:
neuroevolutus 2023-03-11 20:44:45 -06:00
parent 6b703e4f2e
commit a3ca396832
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ This uses Golang's built in LoadLocation function to parse timezones strings. Se
## Durations
Durations are parsed using Golang's built in [ParseDuration](https://pkg.go.dev/time#ParseDuration) function.
You can durations to time using the `+` operator.
You can add durations to time using the `+` operator.
## Format: from standard RFC3339 format
Providing a single parameter assumes a standard RFC3339 datetime format. If the target format is not a valid yaml datetime format, the result will be a string tagged node.

View File

@ -23,4 +23,4 @@ This uses Golang's built in LoadLocation function to parse timezones strings. Se
## Durations
Durations are parsed using Golang's built in [ParseDuration](https://pkg.go.dev/time#ParseDuration) function.
You can durations to time using the `+` operator.
You can add durations to time using the `+` operator.