diff options
author | Ian Cordasco <graffatcolmingov@gmail.com> | 2015-08-01 12:11:13 -0500 |
---|---|---|
committer | Ian Cordasco <graffatcolmingov@gmail.com> | 2015-08-01 12:11:13 -0500 |
commit | c9682adaf78cc0983ef639279d38e8bdccc97321 (patch) | |
tree | dee4be48479d6894794a5007ecae073d4a8e0c35 /docs | |
parent | 19f5a49d413bd9c7b81f29511f4c983bb9408968 (diff) | |
download | cryptography-c9682adaf78cc0983ef639279d38e8bdccc97321.tar.gz cryptography-c9682adaf78cc0983ef639279d38e8bdccc97321.tar.bz2 cryptography-c9682adaf78cc0983ef639279d38e8bdccc97321.zip |
Fix up parameter names in the docs
Diffstat (limited to 'docs')
-rw-r--r-- | docs/x509/reference.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/x509/reference.rst b/docs/x509/reference.rst index b7fef940..9d5006ae 100644 --- a/docs/x509/reference.rst +++ b/docs/x509/reference.rst @@ -397,15 +397,15 @@ X.509 Certificate Builder Sets the issuer's distinguished name. - :param public_key: The :class:`~cryptography.x509.Name` that describes - the issuer (CA). + :param name: The :class:`~cryptography.x509.Name` that describes the + issuer (CA). .. method:: subject_name(name) Sets the subject's distinguished name. - :param public_key: The :class:`~cryptography.x509.Name` that describes - the subject (requester). + :param name: The :class:`~cryptography.x509.Name` that describes the + subject (requester). .. method:: public_key(public_key) |