diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-01-04 12:55:28 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-01-04 12:55:28 -0600 |
commit | 3366d8bab493386c2d10fdc6c7eca5f82ea5b515 (patch) | |
tree | 96fa1716ed1273dcd7f5b79c5939bc8f653c10ea | |
parent | 982d8a5f3c617106d8db767863d7da46143487d9 (diff) | |
download | cryptography-3366d8bab493386c2d10fdc6c7eca5f82ea5b515.tar.gz cryptography-3366d8bab493386c2d10fdc6c7eca5f82ea5b515.tar.bz2 cryptography-3366d8bab493386c2d10fdc6c7eca5f82ea5b515.zip |
improve docstring
-rw-r--r-- | cryptography/hazmat/bindings/utils.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cryptography/hazmat/bindings/utils.py b/cryptography/hazmat/bindings/utils.py index 67f58795..9e1d3937 100644 --- a/cryptography/hazmat/bindings/utils.py +++ b/cryptography/hazmat/bindings/utils.py @@ -20,8 +20,7 @@ import cffi def build_ffi(module_prefix, modules, pre_include, post_include, libraries): """ - Modules listed in the ``modules`` listed should have the following - attributes: + Modules listed in ``modules`` should have the following attributes: * ``INCLUDES``: A string containing C includes. * ``TYPES``: A string containing C declarations for types. |