summaryrefslogtreecommitdiffhomepage
path: root/toml.html.markdown
diff options
context:
space:
mode:
authorPratik Karki <predatoramigo@gmail.com>2018-06-14 21:38:59 +0545
committerGitHub <noreply@github.com>2018-06-14 21:38:59 +0545
commit2b19ea7aee93a6c91c77e1f4a5b20f310ca33b41 (patch)
treeec116569bdf26a49e660dd5aa56a16b4a477a3f1 /toml.html.markdown
parentc08e13d8b6407e691218ee7bd8a5495844688e09 (diff)
parent354543c97dbbc7296f68c35db462a9dac30cb9b1 (diff)
Merge pull request #3095 from emilyaviva/master
[toml/en] add clarifying example and text for date/time offsets
Diffstat (limited to 'toml.html.markdown')
-rwxr-xr-xtoml.html.markdown7
1 files changed, 4 insertions, 3 deletions
diff --git a/toml.html.markdown b/toml.html.markdown
index 980563f9..39caaa23 100755
--- a/toml.html.markdown
+++ b/toml.html.markdown
@@ -102,9 +102,10 @@ boolMustBeLowercase = true
# Datetime #
############
-date1 = 1979-05-27T07:32:00Z # follows the RFC 3339 spec
-date2 = 1979-05-27T07:32:00 # without offset
-date3 = 1979-05-27 # without offset nor time
+date1 = 1979-05-27T07:32:00Z # UTC time, following RFC 3339/ISO 8601 spec
+date2 = 1979-05-26T15:32:00+08:00 # with RFC 3339/ISO 8601 offset
+date3 = 1979-05-27T07:32:00 # without offset
+date4 = 1979-05-27 # without offset or time
####################
# COLLECTION TYPES #