Merge pull request #578 from tkschmidt/typos

fixed a few typos
This commit is contained in:
Ian Cordasco
2015-10-03 11:00:14 -05:00
8 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -141,7 +141,7 @@ comment block is a programmer's note. The docstring describes the
"""Returns the square root of self times self."""
...
.. seealso:: Further reading on docstrings: :pep:`257`
.. see also:: Further reading on docstrings: :pep:`257`
Other Tools
+1 -1
View File
@@ -6,7 +6,7 @@ Code Style
If you ask Python programmers what they like most in Python, they will
often say its high readability. Indeed, a high level of readability
is at the heart of the design of the Python language, following the
recognised fact that code is read much more often than it is written.
recognized fact that code is read much more often than it is written.
One reason for Python code to be easily read and understood is its relatively
complete set of Code Style guidelines and "Pythonic" idioms.