From 2e484bcaf0f2b9b82bc088f7ffc18e77b22f63c6 Mon Sep 17 00:00:00 2001 From: Patricio Del Boca Date: Thu, 26 Dec 2019 10:08:45 -0300 Subject: [PATCH] Fix indent in code example --- docs/correctness/indentation_contains_mixed_spaces_and_tabs.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/correctness/indentation_contains_mixed_spaces_and_tabs.rst b/docs/correctness/indentation_contains_mixed_spaces_and_tabs.rst index efe1ef0..68d7b2f 100644 --- a/docs/correctness/indentation_contains_mixed_spaces_and_tabs.rst +++ b/docs/correctness/indentation_contains_mixed_spaces_and_tabs.rst @@ -11,7 +11,7 @@ The following code mixes spaces and tabs for indentation. The ``print("Hello, Wo .. code:: python def print_hello_world(): - # indented with tab + # indented with tab print("Hello, World!") def print_goodbye_world(): # indented with 4 spaces