diff options
author | Andre Delfino <adelfino@gmail.com> | 2021-04-26 01:22:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-26 01:22:28 (GMT) |
commit | 0d930f108cb8ba66f54197175c1fba0c38253e4a (patch) | |
tree | a3ff28955fdf23035eb788f9638579e0650d7581 | |
parent | d28b34695301ec99a9334ad8d69b6092f4f703d5 (diff) | |
download | cpython-0d930f108cb8ba66f54197175c1fba0c38253e4a.zip cpython-0d930f108cb8ba66f54197175c1fba0c38253e4a.tar.gz cpython-0d930f108cb8ba66f54197175c1fba0c38253e4a.tar.bz2 |
Fix copy.Error casing in documentation GH-22004
-rw-r--r-- | Doc/library/copy.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/copy.rst b/Doc/library/copy.rst index 176e01d..01ebf19 100644 --- a/Doc/library/copy.rst +++ b/Doc/library/copy.rst @@ -27,7 +27,7 @@ Interface summary: Return a deep copy of *x*. -.. exception:: error +.. exception:: Error Raised for module specific errors. |