From 32a5dc22c6ef5c5b9bbbc36005317d4d48be26d2 Mon Sep 17 00:00:00 2001 From: Brian Peiris Date: Thu, 5 Feb 2015 11:13:33 -0500 Subject: [PATCH 1/2] Reformat description of a dictionary entry. --- docsite/rst/YAMLSyntax.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docsite/rst/YAMLSyntax.rst b/docsite/rst/YAMLSyntax.rst index 4b85ebac30..ef2803116f 100644 --- a/docsite/rst/YAMLSyntax.rst +++ b/docsite/rst/YAMLSyntax.rst @@ -25,7 +25,7 @@ Ansible or not) should begin with ``---``. This is part of the YAML format and indicates the start of a document. All members of a list are lines beginning at the same indentation level starting -with a ``"- "`` (dash and whitespace) character:: +with a ``"- "`` (dash and whitespace):: --- # A list of tasty fruits @@ -34,7 +34,7 @@ with a ``"- "`` (dash and whitespace) character:: - Strawberry - Mango -A dictionary is represented in a simple ``key: `` (colon and whitespace) and ``value`` form:: +A dictionary is represented in a simple ``key: value`` form (the colon must be followed by a space):: --- # An employee record From ae5f64c232a6838b27db68a79e2a0b109d9a933d Mon Sep 17 00:00:00 2001 From: Brian Peiris Date: Thu, 5 Feb 2015 11:16:39 -0500 Subject: [PATCH 2/2] Update YAMLSyntax.rst --- docsite/rst/YAMLSyntax.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsite/rst/YAMLSyntax.rst b/docsite/rst/YAMLSyntax.rst index ef2803116f..424db0ad46 100644 --- a/docsite/rst/YAMLSyntax.rst +++ b/docsite/rst/YAMLSyntax.rst @@ -25,7 +25,7 @@ Ansible or not) should begin with ``---``. This is part of the YAML format and indicates the start of a document. All members of a list are lines beginning at the same indentation level starting -with a ``"- "`` (dash and whitespace):: +with a ``"- "`` (a dash and a space):: --- # A list of tasty fruits