Merge pull request #7214 from breml/patch-1

Docs: Fix typo
This commit is contained in:
Michael Friedrich 2019-06-03 09:39:39 +02:00 committed by GitHub
commit e7e51ae7e1
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>