From 398e825c1b6fa64457724b8e445de45f664eb8aa Mon Sep 17 00:00:00 2001 From: GGabriele Date: Mon, 5 Sep 2016 18:02:05 +0200 Subject: [PATCH] Fixed docstring --- network/nxos/nxos_bgp_neighbor.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/network/nxos/nxos_bgp_neighbor.py b/network/nxos/nxos_bgp_neighbor.py index fdf492c8b5c..56a6c2923ff 100644 --- a/network/nxos/nxos_bgp_neighbor.py +++ b/network/nxos/nxos_bgp_neighbor.py @@ -20,18 +20,18 @@ DOCUMENTATION = ''' --- module: nxos_bgp_neighbor version_added: "2.2" -short_description: Manages BGP neighbors configurations +short_description: Manages BGP neighbors configurations. description: - - Manages BGP neighbors configurations on NX-OS switches + - Manages BGP neighbors configurations on NX-OS switches. author: Gabriele Gerbino (@GGabriele) extends_documentation_fragment: nxos notes: - - State 'absent' removes the whole BGP neighbor configuration - - default, where supported, restores params default value + - C(state=absent) removes the whole BGP neighbor configuration. + - Default, where supported, restores params default value. options: asn: description: - - BGP autonomous system number. Valid values are String, + - BGP autonomous system number. Valid values are string, Integer in ASPLAIN or ASDOT notation. required: true vrf: @@ -86,7 +86,7 @@ options: log_neighbor_changes: description: - Specify whether or not to enable log messages for neighbor - up/down event. + up/down event. required: false choices: ['enable', 'disable', 'inherit'] default: null @@ -176,7 +176,8 @@ options: default: null state: description: - - Determines whether the config should be present or not on the device. + - Determines whether the config should be present or not + on the device. required: false default: present choices: ['present','absent']