Fix YAML syntax in NXOS documentation (#4922)

* Fix YAML syntax in NXOS documentation

Use ':' and not '=' to ensure valid YAML
in the EXAMPLES

* Correcting introduced syntax error
This commit is contained in:
Josh Lothian 2016-09-19 21:22:12 -05:00 committed by Matt Clay
parent 10af591da2
commit 319b2b28cb
32 changed files with 263 additions and 258 deletions

View file

@ -72,10 +72,10 @@ options:
EXAMPLES = '''
- nxos_static_route:
prefix="192.168.20.64/24"
next_hop="3.3.3.3"
route_name=testing
pref=100
prefix: "192.168.20.64/24"
next_hop: "3.3.3.3"
route_name: testing
pref: 100
username: "{{ un }}"
password: "{{ pwd }}"
host: "{{ inventory_hostname }}"