summaryrefslogtreecommitdiff
path: root/doc/developer/topotests-snippets.rst
diff options
context:
space:
mode:
authorRuben Kerkhof <ruben@rubenkerkhof.com>2019-03-20 20:08:33 +0100
committerRuben Kerkhof <ruben@rubenkerkhof.com>2019-03-20 20:08:33 +0100
commit56f0bea71861da9107da86b2e880dadaa64ac52b (patch)
tree5a3886a442ba24b780042a5d0b890400607be805 /doc/developer/topotests-snippets.rst
parent5a3c6e736dca3639a1b49cdf305b909736f721de (diff)
doc: fix a couple of typos
Found with https://github.com/codespell-project/codespell Signed-off-by: Ruben Kerkhof <ruben@rubenkerkhof.com>
Diffstat (limited to 'doc/developer/topotests-snippets.rst')
-rw-r--r--doc/developer/topotests-snippets.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/developer/topotests-snippets.rst b/doc/developer/topotests-snippets.rst
index 649229b433..fb3c928a77 100644
--- a/doc/developer/topotests-snippets.rst
+++ b/doc/developer/topotests-snippets.rst
@@ -48,17 +48,17 @@ A sample of this snippet in a test can be found `here
Interacting with equipment
^^^^^^^^^^^^^^^^^^^^^^^^^^
-You might want to interact with the topology equipments during the tests and
+You might want to interact with the topology equipment during the tests and
there are different ways to do so.
Notes:
-1. When using the Topogen API, all the equipments code derive from ``Topogear``
+1. When using the Topogen API, all the equipment code derives from ``Topogear``
(`lib/topogen.py <lib/topogen.py>`__). If you feel brave you can look by
- yourself how the abstractions that will be mentioned here works.
+ yourself how the abstractions that will be mentioned here work.
2. When not using the ``Topogen`` API there is only one way to interact with
- the equipments, which is by calling the ``mininet`` API functions directly
+ the equipment, which is by calling the ``mininet`` API functions directly
to spawn commands.
Interacting with the Linux sandbox
@@ -149,7 +149,7 @@ Translating vtysh JSON output into Python structures:
.. note::
- ``vtysh_(multi)cmd`` is only available for router type of equipments.
+ ``vtysh_(multi)cmd`` is only available for router types of equipment.
Invoking mininet CLI
^^^^^^^^^^^^^^^^^^^^
@@ -195,7 +195,7 @@ Loading JSON from a file:
Comparing JSON output
^^^^^^^^^^^^^^^^^^^^^
-After obtaining JSON output formated with Python data structures, you may use
+After obtaining JSON output formatted with Python data structures, you may use
it to assert a minimalist schema:
.. code:: py