Skip to content

Commit

Permalink
Merge pull request ansible#9815 from axiaoxin/devel
Browse files Browse the repository at this point in the history
members of a list must start with ``- ``
  • Loading branch information
bcoca committed Dec 15, 2014
2 parents 12968ac + 5838812 commit b3cd28a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docsite/rst/YAMLSyntax.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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) character::
with a ``- `` (dash and whitespace) character::

---
# A list of tasty fruits
Expand All @@ -34,7 +34,7 @@ with a ``-`` (dash) character::
- Strawberry
- Mango

A dictionary is represented in a simple ``key:`` and ``value`` form::
A dictionary is represented in a simple ``key: `` (colon and whitespace) and ``value`` form::

---
# An employee record
Expand Down

0 comments on commit b3cd28a

Please sign in to comment.