]> granicus.if.org Git - python/commitdiff
Remove redundant footnote (#181)
authorQingpeng "Q.P." Zhang <qingpeng@users.noreply.github.com>
Sun, 19 Feb 2017 19:32:51 +0000 (11:32 -0800)
committerBerker Peksag <berker.peksag@gmail.com>
Sun, 19 Feb 2017 19:32:51 +0000 (22:32 +0300)
It was accidentally added in cc79837.

Doc/tutorial/datastructures.rst

index 0e5891ada9e4a32647f3aaaa4dbf34314e2cfa03..916da4a23bc98a3f3fc35f63694f25679b7e0a66 100644 (file)
@@ -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.