[Python-checkins] Fix wrong indentation of a paragraph in documentation (GH-12868)

Ivan Levkivskyi webhook-mailer at python.org
Wed Apr 17 20:54:59 EDT 2019


https://github.com/python/cpython/commit/9941f963fe085261aec25545fa9f0cc35f750120
commit: 9941f963fe085261aec25545fa9f0cc35f750120
branch: master
author: cocoatomo <cocoatomo77 at gmail.com>
committer: Ivan Levkivskyi <levkivskyi at gmail.com>
date: 2019-04-18T01:54:51+01: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.

files:
M Doc/library/typing.rst

diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst
index ed5f547e3ce3..c2523ed52960 100644
--- a/Doc/library/typing.rst
+++ b/Doc/library/typing.rst
@@ -966,8 +966,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
 



More information about the Python-checkins mailing list