diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2017-02-18 01:26:06 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2017-02-18 00:26:06 -0600 |
commit | 8aa893b3c3739c95f80c22c46e344b9e9226b3ab (patch) | |
tree | a2243164954489973783240a007b3b28091dd6d2 /docs/hazmat/primitives | |
parent | 401ac6f88ecb64558ea4cbea8f40cb81dab18be1 (diff) | |
download | cryptography-8aa893b3c3739c95f80c22c46e344b9e9226b3ab.tar.gz cryptography-8aa893b3c3739c95f80c22c46e344b9e9226b3ab.tar.bz2 cryptography-8aa893b3c3739c95f80c22c46e344b9e9226b3ab.zip |
Two random grammar fixes (#3402)
Diffstat (limited to 'docs/hazmat/primitives')
-rw-r--r-- | docs/hazmat/primitives/asymmetric/dh.rst | 2 |
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) |