aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2017-02-18 01:26:06 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2017-02-18 00:26:06 -0600
commit8aa893b3c3739c95f80c22c46e344b9e9226b3ab (patch)
treea2243164954489973783240a007b3b28091dd6d2 /docs/hazmat
parent401ac6f88ecb64558ea4cbea8f40cb81dab18be1 (diff)
downloadcryptography-8aa893b3c3739c95f80c22c46e344b9e9226b3ab.tar.gz
cryptography-8aa893b3c3739c95f80c22c46e344b9e9226b3ab.tar.bz2
cryptography-8aa893b3c3739c95f80c22c46e344b9e9226b3ab.zip
Two random grammar fixes (#3402)
Diffstat (limited to 'docs/hazmat')
-rw-r--r--docs/hazmat/primitives/asymmetric/dh.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/hazmat/primitives/asymmetric/dh.rst b/docs/hazmat/primitives/asymmetric/dh.rst
index 4cb5ccd4..73e534e2 100644
--- a/docs/hazmat/primitives/asymmetric/dh.rst
+++ b/docs/hazmat/primitives/asymmetric/dh.rst
@@ -35,7 +35,7 @@ exchange.
To assemble a :class:`~DHParameters` and a :class:`~DHPublicKey` from
primitive integers, you must first create the
:class:`~DHParameterNumbers` and :class:`~DHPublicNumbers` objects. For
-example if **p**, **g**, and **y** are :class:`int` objects received from a
+example, if **p**, **g**, and **y** are :class:`int` objects received from a
peer::
pn = dh.DHParameterNumbers(p, g)