Docs: fix typo

This commit is contained in:
Lucas Bremgartner 2019-06-03 09:03:16 +02:00 committed by GitHub
parent 438da67209
commit 7f04d4dc63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1878,7 +1878,7 @@ Adding a number to a DateTime object yields a new DateTime object that is in the
Example:
```
var dt = DateTime() + 24 * 60 60 /* Current time plus 24 hours */
var dt = DateTime() + 24 * 60 * 60 /* Current time plus 24 hours */
```
### DateTime#format <a id="datetime-format"></a>