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

Skip to content

Commit e31c214

Browse files
committed
[2922266] pyplot_tutorial.rst: remove tabs from code (patch by Ori Avtalion)
svn path=/trunk/matplotlib/; revision=8428
1 parent 7e24f90 commit e31c214

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

doc/users/pyplot_tutorial.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ several ways to set line properties
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

78-
line, = plt.plot(x, y, '-')
78+
line, = plt.plot(x, y, '-')
7979
line.set_antialiased(False) # turn off antialising
8080

8181
* Use the :func:`~matplotlib.pyplot.setp` command. The example below

0 commit comments

Comments
 (0)