summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2016-11-03 01:48:51 +0100
committerGitHub <noreply@github.com>2016-11-03 01:48:51 +0100
commitbcef6eb20642a8513a96f1d71d5948caf75ab329 (patch)
tree815df922bdad21f55fb30ae52c27c89f8ead1ee5
parent19d0af9a0429e6169fa0370c43ccc69afe7dcb92 (diff)
parent7fe2495062a63be91d27015791715c583f48d38c (diff)
downloadpysnmp-git-bcef6eb20642a8513a96f1d71d5948caf75ab329.tar.gz
Merge pull request #28 from johnthagen/patch-5
Minor grammar fixes
-rw-r--r--docs/source/docs/pysnmp-hlapi-tutorial.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/source/docs/pysnmp-hlapi-tutorial.rst b/docs/source/docs/pysnmp-hlapi-tutorial.rst
index 0ec57624..ba69326f 100644
--- a/docs/source/docs/pysnmp-hlapi-tutorial.rst
+++ b/docs/source/docs/pysnmp-hlapi-tutorial.rst
@@ -252,10 +252,10 @@ Reading scalar value
We are finally in a position to send SNMP query and hopefully receive
something meaningful in response.
-The distinctive feature of synchronous API is that it is build around
+The distinctive feature of synchronous API is that it is built around
the idea of Python generator. Any function invocation ends up with a
generator object. Iteration over the generator object performs actual
-SNMP communication. On each iteration SNMP message gets build and send
+SNMP communication. On each iteration SNMP message gets built and sent
out, response is awaited, received and parsed.
.. code-block:: python