summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjohnthagen <johnthagen@users.noreply.github.com>2016-11-02 16:34:22 -0400
committerGitHub <noreply@github.com>2016-11-02 16:34:22 -0400
commit7fe2495062a63be91d27015791715c583f48d38c (patch)
tree815df922bdad21f55fb30ae52c27c89f8ead1ee5
parent19d0af9a0429e6169fa0370c43ccc69afe7dcb92 (diff)
downloadpysnmp-git-7fe2495062a63be91d27015791715c583f48d38c.tar.gz
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