diff options
author | Julian Krause <julian.krause@gmail.com> | 2013-12-26 21:12:58 -0800 |
---|---|---|
committer | Julian Krause <julian.krause@gmail.com> | 2013-12-26 21:12:58 -0800 |
commit | 831467cce6c2a2b916e30914635924042b15ed2d (patch) | |
tree | d559d35ea87ec7efd47b8b43779bb82feca91d8c /cryptography | |
parent | 5093d97130ff3ae5328d1e6e83e86f1988f1e277 (diff) | |
download | cryptography-831467cce6c2a2b916e30914635924042b15ed2d.tar.gz cryptography-831467cce6c2a2b916e30914635924042b15ed2d.tar.bz2 cryptography-831467cce6c2a2b916e30914635924042b15ed2d.zip |
Documentation clarity and grammer fixes.
Diffstat (limited to 'cryptography')
-rw-r--r-- | cryptography/hazmat/primitives/interfaces.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptography/hazmat/primitives/interfaces.py b/cryptography/hazmat/primitives/interfaces.py index 4143d644..371701a4 100644 --- a/cryptography/hazmat/primitives/interfaces.py +++ b/cryptography/hazmat/primitives/interfaces.py @@ -167,5 +167,5 @@ class HashContext(six.with_metaclass(abc.ABCMeta)): def verify(self, signature): """ Compare hash digest to signature and raises InvalidSignature - they are not equal. + if they are not equal. """ |