aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/primitives/padding.rst
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-02-06 10:58:50 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2014-02-06 10:58:50 -0800
commitb481889c6430c66d0efedb67d9a35fd205e0b536 (patch)
treef92177e27ff2c6ab8156f9f9264d64addc8145a5 /docs/hazmat/primitives/padding.rst
parentbf7dbbba339e33268c911a8f0c88f6d6895b490d (diff)
downloadcryptography-b481889c6430c66d0efedb67d9a35fd205e0b536.tar.gz
cryptography-b481889c6430c66d0efedb67d9a35fd205e0b536.tar.bz2
cryptography-b481889c6430c66d0efedb67d9a35fd205e0b536.zip
Rephrase for additional clairyt
Diffstat (limited to 'docs/hazmat/primitives/padding.rst')
-rw-r--r--docs/hazmat/primitives/padding.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/hazmat/primitives/padding.rst b/docs/hazmat/primitives/padding.rst
index 764fef40..da5a95dd 100644
--- a/docs/hazmat/primitives/padding.rst
+++ b/docs/hazmat/primitives/padding.rst
@@ -54,11 +54,11 @@ multiple of the block size.
.. class:: PaddingContext
- When calling ``padder()`` or ``unpadder()`` you will receive a return
- object conforming to the ``PaddingContext`` interface. You can then call
- ``update(data)`` with data until you have fed everything into the context.
- Once that is done call ``finalize()`` to finish the operation and obtain
- the remainder of the data.
+ When calling ``padder()`` or ``unpadder()`` the result will conform to the
+ ``PaddingContext`` interface. You can then call ``update(data)`` with data
+ until you have fed everything into the context. Once that is done call
+ ``finalize()`` to finish the operation and obtain the remainder of the
+ data.
.. method:: update(data)