diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-04-26 01:39:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-26 01:39:47 (GMT) |
commit | 62e7646fe2cb0ca73103b71cec3eba1eb4f70cbb (patch) | |
tree | 05a0dc8d2036fe811e21d8f74f57d36ed75f6a72 | |
parent | ff22c1bcfd224c114836b5803e1edb01e384e78d (diff) | |
download | cpython-62e7646fe2cb0ca73103b71cec3eba1eb4f70cbb.zip cpython-62e7646fe2cb0ca73103b71cec3eba1eb4f70cbb.tar.gz cpython-62e7646fe2cb0ca73103b71cec3eba1eb4f70cbb.tar.bz2 |
Fix copy.Error casing in documentation GH-22004 (#25612)
(cherry picked from commit 0d930f108cb8ba66f54197175c1fba0c38253e4a)
Co-authored-by: Andre Delfino <adelfino@gmail.com>
-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 a8e8bfb..0eb5a79 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. |