summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2003-07-13 02:37:05 (GMT)
committerTim Peters <tim.peters@gmail.com>2003-07-13 02:37:05 (GMT)
commit0320464583957258031ebee1b8897343211e4339 (patch)
treea3eac9e0b7637d1cd7c7bab6d65060001ca05687 /Misc
parentd7472ec13a65c6c5ff00365b1477677d1fecbb3c (diff)
downloadcpython-0320464583957258031ebee1b8897343211e4339.zip
cpython-0320464583957258031ebee1b8897343211e4339.tar.gz
cpython-0320464583957258031ebee1b8897343211e4339.tar.bz2
Repaired typos in comments.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1098ad3..0f329df 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -42,7 +42,7 @@ Library
on-disk data and directory files can be left in mutually inconsistent
states. dumbdbm.py's _Database.__del__() method attempted to close
the database properly, but a shutdown race in _Database._commit()
- could prevent this form working, so that a program trusting __del__()
+ could prevent this from working, so that a program trusting __del__()
to get the on-disk files in synch could be badly surprised. The race
has been repaired.