Skip to content

Commit 4449654

Browse files
committed
Merge pull request #2215 from josericardo/master
Fixing small typo in the plot tutorial.
2 parents d2dd649 + 5ca6af9 commit 4449654

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/users/pyplot_tutorial.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ several ways to set line properties
7171

7272

7373
* Use the setter methods of the ``Line2D`` instance. ``plot`` returns a list
74-
of lines; eg ``line1, line2 = plot(x1,y1,x2,x2)``. Below I have only
74+
of lines; eg ``line1, line2 = plot(x1,y1,x2,y2)``. Below I have only
7575
one line so it is a list of length 1. I use tuple unpacking in the
7676
``line, = plot(x, y, 'o')`` to get the first element of the list::
7777

0 commit comments

Comments
 (0)