aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2017-11-13 00:56:13 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2017-11-13 03:56:13 -0500
commit7bcb926c53fd91cfd76db302f9c0652c3a4ef0e4 (patch)
tree3ae393f16396de374bfbd839d6df16116bdc2162 /src
parentf7486f6a3c4490b069448e9a130cfc585c495886 (diff)
downloadcryptography-7bcb926c53fd91cfd76db302f9c0652c3a4ef0e4.tar.gz
cryptography-7bcb926c53fd91cfd76db302f9c0652c3a4ef0e4.tar.bz2
cryptography-7bcb926c53fd91cfd76db302f9c0652c3a4ef0e4.zip
fix typo in comment (#4019)
Diffstat (limited to 'src')
-rw-r--r--src/cryptography/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptography/utils.py b/src/cryptography/utils.py
index baa7b7a1..d69ed89f 100644
--- a/src/cryptography/utils.py
+++ b/src/cryptography/utils.py
@@ -12,7 +12,7 @@ import warnings
# We use a UserWarning subclass, instead of DeprecationWarning, because CPython
-# decided deprecation warnings should be invisble be default.
+# decided deprecation warnings should be invisble by default.
class CryptographyDeprecationWarning(UserWarning):
pass