From 534dd19127aa2dcfbda67c01e22514cf5cf1c0c0 Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Sat, 2 May 2020 23:59:15 +0200 Subject: [PATCH] [mod] preserve order on toml example --- packaging_apps_arguments_format.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packaging_apps_arguments_format.md b/packaging_apps_arguments_format.md index 87af90de..4da68967 100644 --- a/packaging_apps_arguments_format.md +++ b/packaging_apps_arguments_format.md @@ -38,10 +38,10 @@ And in json: "help": { "en": "some help text in english", "fr": "some help text in french" - } - "default", "some stuff", // optional, not available for all types + }, "example": "an example value", // optional - "optional": true, // optional, will skip if not answered + "default", "some stuff", // optional, not available for all types + "optional": true // optional, will skip if not answered }, ```