diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-03 17:33:02 -0800 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-03 17:33:02 -0800 |
commit | e45826f8dc75dd159582ecc15dfc7626ef908a1f (patch) | |
tree | 42fa76494b659826a1163e6c9ab959087f9a57da | |
parent | 010190ff62d7a4d941637bb0780663f4b2e639a6 (diff) | |
parent | 1fb4524530094b29f55275dd8c091bb5bfdec7c8 (diff) | |
download | cryptography-e45826f8dc75dd159582ecc15dfc7626ef908a1f.tar.gz cryptography-e45826f8dc75dd159582ecc15dfc7626ef908a1f.tar.bz2 cryptography-e45826f8dc75dd159582ecc15dfc7626ef908a1f.zip |
Merge pull request #557 from alex/docs-typo
Fixed a typo in the docs
-rw-r--r-- | docs/hazmat/backends/multibackend.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/hazmat/backends/multibackend.rst b/docs/hazmat/backends/multibackend.rst index 63177bef..95538ac8 100644 --- a/docs/hazmat/backends/multibackend.rst +++ b/docs/hazmat/backends/multibackend.rst @@ -18,10 +18,10 @@ MultiBackend >>> from cryptography.hazmat.primitives import hashes >>> backend1.hash_supported(hashes.SHA256()) False - >>> backend2.hash_supported(hashes.SHA1()) + >>> backend2.hash_supported(hashes.SHA256()) True >>> multi_backend = MultiBackend([backend1, backend2]) - >>> multi_backend.hash_supported(hashes.SHA1()) + >>> multi_backend.hash_supported(hashes.SHA256()) True :param backends: A ``list`` of backend objects. Backends are checked for |