diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-07-13 02:37:05 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-07-13 02:37:05 (GMT) |
commit | 0320464583957258031ebee1b8897343211e4339 (patch) | |
tree | a3eac9e0b7637d1cd7c7bab6d65060001ca05687 /Lib/dumbdbm.py | |
parent | d7472ec13a65c6c5ff00365b1477677d1fecbb3c (diff) | |
download | cpython-0320464583957258031ebee1b8897343211e4339.zip cpython-0320464583957258031ebee1b8897343211e4339.tar.gz cpython-0320464583957258031ebee1b8897343211e4339.tar.bz2 |
Repaired typos in comments.
Diffstat (limited to 'Lib/dumbdbm.py')
-rw-r--r-- | Lib/dumbdbm.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/dumbdbm.py b/Lib/dumbdbm.py index 4e426f1..1475361 100644 --- a/Lib/dumbdbm.py +++ b/Lib/dumbdbm.py @@ -39,7 +39,7 @@ class _Database(UserDict.DictMixin): # gets called. One place _commit() gets called is from __del__(), # and if that occurs at program shutdown time, module globals may # already have gotten rebound to None. Since it's crucial that - # _commit() finish sucessfully, we can't ignore shutdown races + # _commit() finish successfully, we can't ignore shutdown races # here, and _commit() must not reference any globals. _os = _os # for _commit() _open = _open # for _commit() |