Minor fixes (#25059)

1) Examples: Remove double space between "option:" and "value"
2) Documentation: Fix rendering usses
3) Documentation: Remove `required: true` to match argspec
This commit is contained in:
John R Barker 2017-05-26 15:17:08 +01:00 committed by GitHub
parent ce584571e8
commit 3740ad2828
27 changed files with 287 additions and 291 deletions

View file

@ -73,18 +73,18 @@ EXAMPLES = '''
- name: "Apply acl to interface"
ce_acl_interface:
state: present
acl_name: 2000
interface: 40GE1/0/1
direction: outbound
state: present
acl_name: 2000
interface: 40GE1/0/1
direction: outbound
provider: "{{ cli }}"
- name: "Undo acl from interface"
ce_acl_interface:
state: absent
acl_name: 2000
interface: 40GE1/0/1
direction: outbound
state: absent
acl_name: 2000
interface: 40GE1/0/1
direction: outbound
provider: "{{ cli }}"
'''