Fix wrong indentation of a paragraph in documentation (GH-12868)
https://github.com/python/cpython/commit/21c8caa16a64e95ee91e83c641e9d4a0844... commit: 21c8caa16a64e95ee91e83c641e9d4a0844ddb74 branch: 3.7 author: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> committer: GitHub <noreply@github.com> date: 2019-04-17T18:00:37-07:00 summary: Fix wrong indentation of a paragraph in documentation (GH-12868) This paragraph doesn't seem to be a part of code, but merged into previous code block. (cherry picked from commit 9941f963fe085261aec25545fa9f0cc35f750120) Co-authored-by: cocoatomo <cocoatomo77@gmail.com> files: M Doc/library/typing.rst diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 9f6757c2864c..21258a58d0aa 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -956,8 +956,8 @@ The module defines the following classes, functions and decorators: def fetch_response() -> Response: ... - Note that returning instances of private classes is not recommended. - It is usually preferable to make such classes public. + Note that returning instances of private classes is not recommended. + It is usually preferable to make such classes public. .. data:: Any
participants (1)
-
Miss Islington (bot)