Merge pull request #171 from JensRantil/fix_broken_bullet_list
authorKenneth Reitz <me@kennethreitz.com>
Mon, 11 Jun 2012 00:34:38 +0000 (17:34 -0700)
committerKenneth Reitz <me@kennethreitz.com>
Mon, 11 Jun 2012 00:34:38 +0000 (17:34 -0700)
Fixing a broken bullet list

docs/intro/duction.rst
docs/scenarios/scientific.rst
docs/writing/tests.rst

index 83b3aa7..e0d4180 100644 (file)
@@ -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.
 
index 37e60bd..0b2c165 100644 (file)
@@ -11,12 +11,13 @@ and it performs really well.
 
 Due to its high performance nature, scientific computing in python often refers
 to external libraries, typically written in faster languages (like C, or FORTRAN
-for matrix operations). The main libraries used are NumPy and SciPy
+for matrix operations). The main libraries used are `NumPy`_ and
+`SciPy`_.
 
 Libraries
 :::::::::
 
-Numpy
+NumPy
 -----
 `NumPy <http://numpy.scipy.org/>`_ is a low level library written in C (and
 FORTRAN) for high level mathematical functions. NumPy cleverly overcomes the
index 717d26e..0a8479d 100644 (file)
@@ -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()``,