aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Reid <dreid@dreid.org>2013-11-07 13:16:50 -0800
committerDavid Reid <dreid@dreid.org>2013-11-07 13:16:50 -0800
commit07e8a49658945d2082ef4f9a4dd9ea01e57b6e58 (patch)
tree87c10718e325fcf7f953fb50696c3440bf95d882
parent9ed25e48afbd56f9f825ebbed9ef2c27c31c65e4 (diff)
downloadcryptography-07e8a49658945d2082ef4f9a4dd9ea01e57b6e58.tar.gz
cryptography-07e8a49658945d2082ef4f9a4dd9ea01e57b6e58.tar.bz2
cryptography-07e8a49658945d2082ef4f9a4dd9ea01e57b6e58.zip
Consistently use e.g.
-rw-r--r--cryptography/hazmat/primitives/interfaces.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cryptography/hazmat/primitives/interfaces.py b/cryptography/hazmat/primitives/interfaces.py
index d4466e72..da4fa209 100644
--- a/cryptography/hazmat/primitives/interfaces.py
+++ b/cryptography/hazmat/primitives/interfaces.py
@@ -29,7 +29,7 @@ class Mode(six.with_metaclass(abc.ABCMeta)):
@abc.abstractproperty
def name(self):
"""
- A string naming this mode. (ex. ECB, CBC)
+ A string naming this mode. (e.g. ECB, CBC)
"""
@@ -81,7 +81,7 @@ class HashAlgorithm(six.with_metaclass(abc.ABCMeta)):
@abc.abstractproperty
def name(self):
"""
- A string naming this algorithm. (ex. sha256, md5)
+ A string naming this algorithm. (e.g. sha256, md5)
"""
@abc.abstractproperty