diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2017-02-06 10:37:19 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2017-02-06 10:37:19 (GMT) |
commit | d93c4de52225e2bb1c486a07a6f1e3633d0011c4 (patch) | |
tree | 4c1a7358c3e397972bb039b53115940e9fe76044 /Doc | |
parent | a7e164881e9b853044ab1dcc3063a9aba8b83b19 (diff) | |
download | cpython-d93c4de52225e2bb1c486a07a6f1e3633d0011c4.zip cpython-d93c4de52225e2bb1c486a07a6f1e3633d0011c4.tar.gz cpython-d93c4de52225e2bb1c486a07a6f1e3633d0011c4.tar.bz2 |
Fix usage of data directive
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/ssl.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index eee4849..07b9771 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -636,7 +636,7 @@ Constants .. deprecated:: 3.6 - Use data:`PROTOCOL_TLS` instead. + Use :data:`PROTOCOL_TLS` instead. .. data:: PROTOCOL_SSLv2 @@ -667,7 +667,7 @@ Constants .. deprecated:: 3.6 OpenSSL has deprecated all version specific protocols. Use the default - protocol data:`PROTOCOL_TLS` with flags like data:`OP_NO_SSLv3` instead. + protocol :data:`PROTOCOL_TLS` with flags like :data:`OP_NO_SSLv3` instead. .. data:: PROTOCOL_TLSv1 @@ -676,7 +676,7 @@ Constants .. deprecated:: 3.6 OpenSSL has deprecated all version specific protocols. Use the default - protocol data:`PROTOCOL_TLS` with flags like data:`OP_NO_SSLv3` instead. + protocol :data:`PROTOCOL_TLS` with flags like :data:`OP_NO_SSLv3` instead. .. data:: PROTOCOL_TLSv1_1 @@ -688,7 +688,7 @@ Constants .. deprecated:: 3.6 OpenSSL has deprecated all version specific protocols. Use the default - protocol data:`PROTOCOL_TLS` with flags like data:`OP_NO_SSLv3` instead. + protocol :data:`PROTOCOL_TLS` with flags like :data:`OP_NO_SSLv3` instead. .. data:: PROTOCOL_TLSv1_2 @@ -701,7 +701,7 @@ Constants .. deprecated:: 3.6 OpenSSL has deprecated all version specific protocols. Use the default - protocol data:`PROTOCOL_TLS` with flags like data:`OP_NO_SSLv3` instead. + protocol :data:`PROTOCOL_TLS` with flags like :data:`OP_NO_SSLv3` instead. .. data:: OP_ALL |