summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorQingpeng "Q.P." Zhang <qingpeng@users.noreply.github.com>2017-02-19 19:32:51 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2017-02-19 19:32:51 (GMT)
commit4bfb6038102431df834a01453a89437647d19483 (patch)
tree47e8adbda4b723330e476ed980a7bb12b410abb8 /Doc
parent0f48ecddfb79ef541500ecfcbda0b4178af1cc29 (diff)
downloadcpython-4bfb6038102431df834a01453a89437647d19483.zip
cpython-4bfb6038102431df834a01453a89437647d19483.tar.gz
cpython-4bfb6038102431df834a01453a89437647d19483.tar.bz2
Remove redundant footnote (#181)
It was accidentally added in cc79837.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/tutorial/datastructures.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/datastructures.rst b/Doc/tutorial/datastructures.rst
index 0e5891a..916da4a 100644
--- a/Doc/tutorial/datastructures.rst
+++ b/Doc/tutorial/datastructures.rst
@@ -107,7 +107,7 @@ An example that uses most of the list methods::
You might have noticed that methods like ``insert``, ``remove`` or ``sort`` that
only modify the list have no return value printed -- they return the default
-``None``. [1]_ This is a design principle for all mutable data structures in
+``None``. This is a design principle for all mutable data structures in
Python.