Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
aduh95 authored Nov 15, 2022
1 parent 29dbbdc commit 68a5fa3
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions toml.md
Original file line number Diff line number Diff line change
Expand Up @@ -551,10 +551,9 @@ time with a space character (as permitted by RFC 3339 section 5.6).
odt4 = 1979-05-27 07:32:00Z
```

Millisecond precision is required. Further precision of fractional seconds is
implementation-specific. If the value contains greater precision than the
implementation can support, the additional precision must be truncated, not
rounded.
Implementations are required to support at least millisecond precision.
Additional digits of precision may be specified, but if they exceed the
supported precision, then the extra digits must be _truncated_, not rounded.

Local Date-Time
---------------
Expand All @@ -571,10 +570,9 @@ ldt2 = 1979-05-27T07:32:00.5
ldt3 = 1979-05-27T00:32:00.999999
```

Millisecond precision is required. Further precision of fractional seconds is
implementation-specific. If the value contains greater precision than the
implementation can support, the additional precision must be truncated, not
rounded.
Implementations are required to support at least millisecond precision.
Additional digits of precision may be specified, but if they exceed the
supported precision, then the extra digits must be _truncated_, not rounded.

Local Date
----------
Expand All @@ -601,10 +599,9 @@ lt2 = 00:32:00.5
lt3 = 00:32:00.999999
```

Millisecond precision is required. Further precision of fractional seconds is
implementation-specific. If the value contains greater precision than the
implementation can support, the additional precision must be truncated, not
rounded.
Implementations are required to support at least millisecond precision.
Additional digits of precision may be specified, but if they exceed the
supported precision, then the extra digits must be _truncated_, not rounded.

Array
-----
Expand Down

0 comments on commit 68a5fa3

Please sign in to comment.