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

@ -78,12 +78,12 @@ options:
EXAMPLES = '''
# Set NTP Server with parameters
- nxos_ntp:
server=1.2.3.4
key_id=32
prefer=enabled
host={{ inventory_hostname }}
username={{ un }}
password={{ pwd }}
server: 1.2.3.4
key_id: 32
prefer: enabled
host: {{ inventory_hostname }}
username: {{ un }}
password: {{ pwd }}
'''
RETURN = '''
@ -629,4 +629,4 @@ def main():
from ansible.module_utils.basic import *
if __name__ == '__main__':
main()
main()