10000 Typo fixed · matplotlib/matplotlib@c0ebd4f · GitHub
[go: up one dir, main page]

Skip to content

Commit c0ebd4f

Browse files
committed
Typo fixed
1 parent 850178e commit c0ebd4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/patches.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3096,7 +3096,7 @@ def ensure_quadratic_bezier(path):
30963096
segments = list(path.iter_segments())
30973097
if (len(segments) != 2) or (segments[0][1] != Path.MOVETO) or\
30983098
(segments[1][1] != Path.CURVE3):
3099-
msg = "'path' it's not a valid quadratice bezier curve"
3099+
msg = "'path' it's not a valid quadratic bezier curve"
31003100
raise ValueError(msg)
31013101

31023102
return list(segments[0][0]) + list(segments[1][0])

0 commit comments

Comments
 (0)
0