diff options
author | Georg Brandl <georg@python.org> | 2009-05-08 12:17:34 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-05-08 12:17:34 (GMT) |
commit | d8282eeb51be243800705677087a6181e317ab0a (patch) | |
tree | 4cd626529cc64bc9319289cefd1c1a092ce6372b | |
parent | 3a9930db47c61529450a125bd47b39db4405fc7f (diff) | |
download | cpython-d8282eeb51be243800705677087a6181e317ab0a.zip cpython-d8282eeb51be243800705677087a6181e317ab0a.tar.gz cpython-d8282eeb51be243800705677087a6181e317ab0a.tar.bz2 |
Fix name.
-rw-r--r-- | Doc/library/shelve.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/library/shelve.rst b/Doc/library/shelve.rst index 1afa19b..8a34dd6 100644 --- a/Doc/library/shelve.rst +++ b/Doc/library/shelve.rst @@ -1,4 +1,3 @@ - :mod:`shelve` --- Python object persistence =========================================== @@ -38,7 +37,7 @@ lots of shared sub-objects. The keys are ordinary strings. accessed entries are written back (there is no way to determine which accessed entries are mutable, nor which ones were actually mutated). -Shelve objects support all methods supported by dictionaries. This eases the +Shelf objects support all methods supported by dictionaries. This eases the transition from dictionary based scripts to those requiring persistent storage. One additional method is supported: |