Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/intro/duction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ include:

Python is sometimes described with the words "batteries included"
for its extensive
`stanadard library <http://docs.python.org/library/>`_, which can
`standard library <http://docs.python.org/library/>`_, which can
includes modules for regular expressions, file IO, fraction handling,
object serialization, and much more.

Expand Down
2 changes: 1 addition & 1 deletion docs/writing/tests.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Some general rules of testing:
catching test are among the most valuable piece of code in your project.

- Use long and descriptive names for testing functions. The style guide here is
slighlty different than that of running code, where short names are often
slightly different than that of running code, where short names are often
preferred. The reason is testing functions are never called explicitely.
``square()`` or even ``sqr()`` is ok in running code, but in testing code you
would has names such as ``test_square_of_number_2()``,
Expand Down