Skip to content

Commit 590cc29

Browse files
authored
Merge pull request #756 from pradyunsg/indian-style-number-separation
Add another example of integer grouping
2 parents 2d22b9d + 48a1686 commit 590cc29

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

toml.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,8 @@ side.
407407
```toml
408408
int5 = 1_000
409409
int6 = 5_349_221
410-
int7 = 1_2_3_4_5 # VALID but discouraged
410+
int7 = 53_49_221 # Indian number system grouping
411+
int8 = 1_2_3_4_5 # VALID but discouraged
411412
```
412413

413414
Leading zeros are not allowed. Integer values `-0` and `+0` are valid and

0 commit comments

Comments
 (0)