Skip to content

Commit dd33ebc

Browse files
committed
DOC: correct deepcopy docstring
1 parent 60903f0 commit dd33ebc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/path.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ def __deepcopy__(self, memo=None):
299299

300300
def deepcopy(self, memo=None):
301301
"""
302-
Return a shallow copy of the `Path`, which will share the
302+
Return a deep copy of the `Path`, with copies of the
303303
vertices and codes with the source `Path`.
304304
"""
305305
return copy.deepcopy(self, memo=memo)

0 commit comments

Comments
 (0)