From af83fcd36101ae8b215b4c619f596ea8f672263b Mon Sep 17 00:00:00 2001 From: "Qingpeng \"Q.P.\" Zhang" Date: Sun, 19 Feb 2017 11:04:06 -0800 Subject: [PATCH] remove the wrong footnote notation extra [1] --- Doc/tutorial/datastructures.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/tutorial/datastructures.rst b/Doc/tutorial/datastructures.rst index 0e5891ada9e4a3..916da4a23bc98a 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.