From 192daac855ce440f6110c05105407f4d39658e0d Mon Sep 17 00:00:00 2001 From: GGabriele Date: Mon, 5 Sep 2016 17:36:48 +0200 Subject: [PATCH] Fixed docstring --- network/nxos/nxos_ping.py | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/network/nxos/nxos_ping.py b/network/nxos/nxos_ping.py index 72e87018d97..ea4ecb6826c 100644 --- a/network/nxos/nxos_ping.py +++ b/network/nxos/nxos_ping.py @@ -20,29 +20,31 @@ DOCUMENTATION = ''' --- module: nxos_ping version_added: "2.1" -short_description: Tests reachability using ping from Nexus switch +short_description: Tests reachability using ping from Nexus switch. description: - - Tests reachability using ping from switch to a remote destination + - Tests reachability using ping from switch to a remote destination. extends_documentation_fragment: nxos -author: Jason Edelman (@jedelman8), Gabriele Gerbino (@GGabriele) +author: + - Jason Edelman (@jedelman8) + - Gabriele Gerbino (@GGabriele) options: dest: description: - - IP address or hostname (resolvable by switch) of remote node + - IP address or hostname (resolvable by switch) of remote node. required: true count: description: - - Number of packets to send + - Number of packets to send. required: false default: 2 source: description: - - Source IP Address + - Source IP Address. required: false default: null vrf: description: - - Outgoing VRF + - Outgoing VRF. required: false default: null '''