diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2015-02-20 04:30:15 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2015-02-20 04:30:15 (GMT) |
commit | 56dee1e463d2a9962aca0c577a5782a89cce3dbb (patch) | |
tree | a416ca345076117c25a59e05a70c8c538f470c45 | |
parent | 57c616f1e43f8c65a48fb6f1e85d040e8f929779 (diff) | |
download | cpython-56dee1e463d2a9962aca0c577a5782a89cce3dbb.zip cpython-56dee1e463d2a9962aca0c577a5782a89cce3dbb.tar.gz cpython-56dee1e463d2a9962aca0c577a5782a89cce3dbb.tar.bz2 |
Fix typo pointed out on docs@ by Yaniv Sayeh
-rw-r--r-- | Doc/library/copyreg.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/copyreg.rst b/Doc/library/copyreg.rst index 50d5879..18306c7 100644 --- a/Doc/library/copyreg.rst +++ b/Doc/library/copyreg.rst @@ -9,7 +9,7 @@ module: pickle module: copy -The :mod:`copyreg` module offers a way to define fuctions used while pickling +The :mod:`copyreg` module offers a way to define functions used while pickling specific objects. The :mod:`pickle` and :mod:`copy` modules use those functions when pickling/copying those objects. The module provides configuration information about object constructors which are not classes. |