From 9fcb6635fabd9eeaea84786c26e129d2c1aa8001 Mon Sep 17 00:00:00 2001 From: Scott Butler Date: Tue, 24 May 2016 22:00:40 -0700 Subject: [PATCH] Typo fixes --- docsite/rst/intro_networking.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docsite/rst/intro_networking.rst b/docsite/rst/intro_networking.rst index a1dd02643eb..e9d5d9a3535 100644 --- a/docsite/rst/intro_networking.rst +++ b/docsite/rst/intro_networking.rst @@ -201,7 +201,7 @@ is executed on the remote device and the results are evaluated. If the path :code:`(result[0].interfaces.Ethernet4.interfaceStatus)` is not equal to "connected", then the command is retried. This process continues -until either the condition is statisfied or the number of retries has +until either the condition is satisfied or the number of retries has expired (by default, this is 10 retries at 1 second intervals). The commands module can also evaluate more than one set of command @@ -217,12 +217,12 @@ results in an interface. For instance:: - "result[0].interfaces.Ethernet4.interfaceStatus eq connected" - "result[1].interfaces.Ethernet4.interfaceStatus eq connected" -In the above example, there are two commands that are executed on the -remote device and the results are evaluated. By specifying the result +In the above example, two commands are executed on the +remote device, and the results are evaluated. By specifying the result index value (0 or 1), the correct result output is checked against the conditional. The waitfor argument must always start with result and then the -command index in [] where 0 is the first command in the commands list, +command index in [], where 0 is the first command in the commands list, 1 is the second command, 2 is the third and so on.