summaryrefslogtreecommitdiff
path: root/docs/development
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2020-10-26 01:41:40 -0400
committerGitHub <noreply@github.com>2020-10-25 22:41:40 -0700
commitd3eae8d7dbcd7ca491531424a4ac8b4838acf199 (patch)
treecb486a37a53cabbca8253a2a0f4c9d24eb1f098f /docs/development
parent558cf91f4760193e73ad6dc42b2ad6e87a06909b (diff)
downloadcryptography-d3eae8d7dbcd7ca491531424a4ac8b4838acf199.tar.gz
Delete all the 1.0.2 code (#5511)
Diffstat (limited to 'docs/development')
-rw-r--r--docs/development/c-bindings.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/development/c-bindings.rst b/docs/development/c-bindings.rst
index efc21ca0a..e53e0bae7 100644
--- a/docs/development/c-bindings.rst
+++ b/docs/development/c-bindings.rst
@@ -189,9 +189,9 @@ Caveats
Sometimes, a set of loosely related features are added in the same
version, and it's impractical to create ``#ifdef`` statements for each
one. In that case, it may make sense to either check for a particular
-version. For example, to check for OpenSSL 1.1.0 or newer::
+version. For example, to check for OpenSSL 1.1.1 or newer::
- #if CRYPTOGRAPHY_OPENSSL_110_OR_GREATER
+ #if CRYPTOGRAPHY_OPENSSL_111_OR_GREATER
Sometimes, the version of a library on a particular platform will have
features that you thought it wouldn't, based on its version.