Skip to content

Commit 6d0c5c6

Browse files
committed
Explicitly mention arrays are ordered
Kind-of obvious, but doesn't hurt to explicitly mention it, as it adds just one word. Rephrased slightly for clarity. Fixes #1027
1 parent 2431aa3 commit 6d0c5c6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

toml.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -641,9 +641,9 @@ rounded.
641641

642642
## Array
643643

644-
Arrays are square brackets with values inside. Whitespace is ignored. Elements
645-
are separated by commas. Arrays can contain values of the same data types as
646-
allowed in key/value pairs. Values of different types may be mixed.
644+
Arrays are ordered values surrounded by square brackets. Whitespace is ignored.
645+
Elements are separated by commas. Arrays can contain values of the same data
646+
types as allowed in key/value pairs. Values of different types may be mixed.
647647

648648
```toml
649649
integers = [ 1, 2, 3 ]

0 commit comments

Comments
 (0)