From e606a1237b7dbca9a413f201409b2de7f753b206 Mon Sep 17 00:00:00 2001 From: Scott Butler Date: Fri, 6 May 2016 14:34:31 -0700 Subject: [PATCH] Fixed typos --- lib/ansible/modules/network/eos/eos_command.py | 10 +++++----- lib/ansible/modules/network/eos/eos_config.py | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/ansible/modules/network/eos/eos_command.py b/lib/ansible/modules/network/eos/eos_command.py index aab2d67a5dc..322725fec26 100644 --- a/lib/ansible/modules/network/eos/eos_command.py +++ b/lib/ansible/modules/network/eos/eos_command.py @@ -23,8 +23,8 @@ version_added: "2.1" author: "Peter sprygada (@privateip)" short_description: Run arbitrary command on EOS device description: - - Sends an aribtrary set of commands to and EOS node and returns the results - read from the device. The M(eos_command) modulule includes an + - Sends an aribtrary set of commands to an EOS node and returns the results + read from the device. The M(eos_command) module includes an argument that will cause the module to wait for a specific condition before returning or timing out if the condition is not met. extends_documentation_fragment: eos @@ -35,7 +35,7 @@ options: configured provider. The resulting output from the command is returned. If the I(waitfor) argument is provided, the module is not returned until the condition is satisfied or - the number of retires as expired. + the number of retries has been exceeded. required: true waitfor: description: @@ -48,7 +48,7 @@ options: default: null retries: description: - - Specifies the number of retries a command should by tried + - Specifies the number of retries a command should be tried before it is considered failed. The command is run on the target device every retry and evaluated against the waitfor conditionals @@ -98,7 +98,7 @@ stdout: sample: ['...', '...'] stdout_lines: - description: The value of stdout split into a list + description: the value of stdout split into a list returned: always type: list sample: [['...', '...'], ['...'], ['...']] diff --git a/lib/ansible/modules/network/eos/eos_config.py b/lib/ansible/modules/network/eos/eos_config.py index 78b38aac34d..14b3ebbf772 100644 --- a/lib/ansible/modules/network/eos/eos_config.py +++ b/lib/ansible/modules/network/eos/eos_config.py @@ -34,7 +34,7 @@ options: - The ordered set of commands that should be configured in the section. The commands must be the exact same commands as found in the device running-config. Be sure to note the configuration - command syntanx as some commands are automatically modified by the + command syntax as some commands are automatically modified by the device config parser. required: true parents: