diff options
author | Stéphane Wirtel <stephane@wirtel.be> | 2018-10-05 14:17:18 (GMT) |
---|---|---|
committer | Julien Palard <julien@palard.fr> | 2018-10-05 14:17:18 (GMT) |
commit | 07fbbfde1b300369b4f8d1cfb80045fbb23b7091 (patch) | |
tree | 22b0c9ff108a70fb54acef879c3ee66ed29452f6 /Doc | |
parent | 7a7693e9cb12e5571c76331db56a28eef9acb6e0 (diff) | |
download | cpython-07fbbfde1b300369b4f8d1cfb80045fbb23b7091.zip cpython-07fbbfde1b300369b4f8d1cfb80045fbb23b7091.tar.gz cpython-07fbbfde1b300369b4f8d1cfb80045fbb23b7091.tar.bz2 |
bpo-34906: Doc: Fix typos (GH-9712)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/dis.rst | 2 | ||||
-rw-r--r-- | Doc/library/ssl.rst | 2 | ||||
-rw-r--r-- | Doc/library/zipapp.rst | 2 | ||||
-rw-r--r-- | Doc/whatsnew/3.6.rst | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index fe9979d..060d4bb 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -149,7 +149,7 @@ operation is being performed, so the intermediate analysis object isn't useful: .. function:: dis(x=None, *, file=None, depth=None) Disassemble the *x* object. *x* can denote either a module, a class, a - method, a function, a generator, an asynchronous generator, a couroutine, + method, a function, a generator, an asynchronous generator, a coroutine, a code object, a string of source code or a byte sequence of raw bytecode. For a module, it disassembles all functions. For a class, it disassembles all methods (including class and static methods). For a code object or diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index a8cbe23..9dadc58 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -2658,7 +2658,7 @@ of TLS/SSL. Some new TLS 1.3 features are not yet available. - TLS 1.3 uses a disjunct set of cipher suites. All AES-GCM and ChaCha20 cipher suites are enabled by default. The method :meth:`SSLContext.set_ciphers` cannot enable or disable any TLS 1.3 - ciphers yet, but :meth:`SSLContext.get_cipers` returns them. + ciphers yet, but :meth:`SSLContext.get_ciphers` returns them. - Session tickets are no longer sent as part of the initial handshake and are handled differently. :attr:`SSLSocket.session` and :class:`SSLSession` are not compatible with TLS 1.3. diff --git a/Doc/library/zipapp.rst b/Doc/library/zipapp.rst index 1c45b759..7283152 100644 --- a/Doc/library/zipapp.rst +++ b/Doc/library/zipapp.rst @@ -195,7 +195,7 @@ Pack up a directory into an archive, and run it. $ python myapp.pyz <output from myapp> -The same can be done using the :func:`create_archive` functon:: +The same can be done using the :func:`create_archive` function:: >>> import zipapp >>> zipapp.create_archive('myapp.pyz', 'myapp') diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst index d5358b3..fec7c62 100644 --- a/Doc/whatsnew/3.6.rst +++ b/Doc/whatsnew/3.6.rst @@ -1623,7 +1623,7 @@ a class variable and should not be set on instances of that class. <https://github.com/python/typing/pull/280>`_.) A new :const:`~typing.TYPE_CHECKING` constant that is assumed to be -``True`` by the static type chekers, but is ``False`` at runtime. +``True`` by the static type checkers, but is ``False`` at runtime. (Contributed by Guido van Rossum in `Github #230 <https://github.com/python/typing/issues/230>`_.) |