From 6d0c5c6c4c051f8294532e9fbdf0e508243de5df Mon Sep 17 00:00:00 2001 From: Martin Tournoij Date: Fri, 17 May 2024 09:56:26 +0100 Subject: [PATCH] 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 --- toml.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/toml.md b/toml.md index 8862f0ea..df187810 100644 --- a/toml.md +++ b/toml.md @@ -641,9 +641,9 @@ rounded. ## Array -Arrays are square brackets with values inside. Whitespace is ignored. Elements -are separated by commas. Arrays can contain values of the same data types as -allowed in key/value pairs. Values of different types may be mixed. +Arrays are ordered values surrounded by square brackets. Whitespace is ignored. +Elements are separated by commas. Arrays can contain values of the same data +types as allowed in key/value pairs. Values of different types may be mixed. ```toml integers = [ 1, 2, 3 ]