summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHui Lan <lanhui@zjnu.edu.cn>2019-07-26 21:27:30 +0800
committerHui Lan <lanhui@zjnu.edu.cn>2019-07-26 21:27:30 +0800
commit1a19a43638d12805c9fc01a811bdde78488ff241 (patch)
tree74cbc0fe2b8cc9a21a3535641b4359899efee85d
parentc18f44a571e041895408b97579e6730fb73e4a90 (diff)
LectureNotesOnPython.rst: 修改defaultdict那节下的一个小错误 不在应该是不再
-rw-r--r--LectureNotesOnPython.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/LectureNotesOnPython.rst b/LectureNotesOnPython.rst
index 62dcf3d..876b4fb 100644
--- a/LectureNotesOnPython.rst
+++ b/LectureNotesOnPython.rst
@@ -2754,7 +2754,7 @@ defaultdict
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-可以避免第一次加 value 时 key 不在引起的 KeyError。
+可以避免第一次加 value 时 key 不再引起的 KeyError。
.. code:: python