diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-12-19 17:22:20 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-12-19 17:22:20 -0800 |
commit | 764b54a5b1b3e8d6f5d7c2b72a5fdf00b0d805b3 (patch) | |
tree | 913140d3c8c4531efccc098baf8724b167cce9d0 | |
parent | 67539c09123de7e76440ce5867613ade2a74b075 (diff) | |
download | cryptography-764b54a5b1b3e8d6f5d7c2b72a5fdf00b0d805b3.tar.gz cryptography-764b54a5b1b3e8d6f5d7c2b72a5fdf00b0d805b3.tar.bz2 cryptography-764b54a5b1b3e8d6f5d7c2b72a5fdf00b0d805b3.zip |
Make these examples consistent
-rw-r--r-- | cryptography/hazmat/primitives/interfaces.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cryptography/hazmat/primitives/interfaces.py b/cryptography/hazmat/primitives/interfaces.py index 61ecda9a..e87c9ca9 100644 --- a/cryptography/hazmat/primitives/interfaces.py +++ b/cryptography/hazmat/primitives/interfaces.py @@ -44,7 +44,7 @@ class Mode(six.with_metaclass(abc.ABCMeta)): @abc.abstractproperty def name(self): """ - A string naming this mode (e.g. ECB, CBC). + A string naming this mode (e.g. "ECB", "CBC"). """ @@ -122,7 +122,7 @@ class HashAlgorithm(six.with_metaclass(abc.ABCMeta)): @abc.abstractproperty def name(self): """ - A string naming this algorithm (e.g. sha256, md5). + A string naming this algorithm (e.g. "sha256", "md5"). """ @abc.abstractproperty |