summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--advanced_python/modules.rst2
-rw-r--r--advanced_python/rst.rst5
2 files changed, 3 insertions, 4 deletions
diff --git a/advanced_python/modules.rst b/advanced_python/modules.rst
index 833334d..f3df676 100644
--- a/advanced_python/modules.rst
+++ b/advanced_python/modules.rst
@@ -89,7 +89,7 @@ And run the script,
Yes! it worked. So what did we do?
We actually imported the required functions and keywords, using ``import``.
-By using the *, we are asking python to import everything from the
+By using the * , we are asking python to import everything from the
``scipy`` and ``pylab`` modules. This isn't a good practice, as
1. it imports a lot of unnecessary things
2. the two modules may have functions with the same name, which would
diff --git a/advanced_python/rst.rst b/advanced_python/rst.rst
index a43f5a3..fcbd986 100644
--- a/advanced_python/rst.rst
+++ b/advanced_python/rst.rst
@@ -1,5 +1,5 @@
ReST
-====
+----
----------------------------
The Pythonic way to Document
@@ -242,7 +242,7 @@ Links
`A Title`_ automatically generates hyperlink targets.
- + in Sphinx ::
+ + in Sphinx ::
:ref: `This is an example <example>` link.
This is an :ref: `example` link.
@@ -250,7 +250,6 @@ Links
Footnotes
---------
-
::
This[#]_ gives auto-numbered[#]_ footnotes.