diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2008-04-15 13:10:41 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2008-04-15 13:10:41 (GMT) |
commit | 8c65b1ed782752fefe120025fd5fe41079b8e8b6 (patch) | |
tree | f11c01f6f87d0dacb430ca28df8ee8ab271a1012 /Doc/tutorial | |
parent | 3822af6d3ad2a4645fa71b263396fd1dd213d639 (diff) | |
download | cpython-8c65b1ed782752fefe120025fd5fe41079b8e8b6.zip cpython-8c65b1ed782752fefe120025fd5fe41079b8e8b6.tar.gz cpython-8c65b1ed782752fefe120025fd5fe41079b8e8b6.tar.bz2 |
Typo fix
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/controlflow.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst index 61a621f..4b4c819 100644 --- a/Doc/tutorial/controlflow.rst +++ b/Doc/tutorial/controlflow.rst @@ -572,7 +572,7 @@ concise, *formatted*) in different styles; some are more readable than others. Making it easy for others to read your code is always a good idea, and adopting a nice coding style helps tremendously for that. -For Python, :pep:`8` has emerged as the style guide that most projects adher to; +For Python, :pep:`8` has emerged as the style guide that most projects adhere to; it promotes a very readable and eye-pleasing coding style. Every Python developer should read it at some point; here are the most important points extracted for you: |