Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 20bc2b2

Browse files
DOC: fix pluralization
Co-authored-by: Bruno Beltran <[email protected]>
1 parent 5d753cb commit 20bc2b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/path.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ def transformed(self, transform):
496496

497497
def contains_point(self, point, transform=None, radius=0.0):
498498
"""
499-
Return whether the area enclosed by the path contains the given points.
499+
Return whether the area enclosed by the path contains the given point.
500500
501501
The path is always treated as closed; i.e. if the last code is not
502502
CLOSEPOLY an implicit segment connecting the last vertex to the first
@@ -546,7 +546,7 @@ def contains_point(self, point, transform=None, radius=0.0):
546546

547547
def contains_points(self, points, transform=None, radius=0.0):
548548
"""
549-
Return whether the area enclosed by the path contains the given point.
549+
Return whether the area enclosed by the path contains the given points.
550550
551551
The path is always treated as closed; i.e. if the last code is not
552552
CLOSEPOLY an implicit segment connecting the last vertex to the first

0 commit comments

Comments
 (0)