8000 Update simple_plot.py · matplotlib/matplotlib@95a8d39 · GitHub
[go: up one dir, main page]

Skip to content

Commit 95a8d39

Browse files
authored
Update simple_plot.py
Fixed the tiny typo before merging.
1 parent 9daf807 commit 95a8d39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/pylab_examples/simple_plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
t = np.arange(0.0, 2.0, 0.01)
1212
s = 1 + np.sin(2*np.pi*t)
1313

14-
# Note that using plt.subplots below is equivilent to using
14+
# Note that using plt.subplots below is equivalent to using
1515
# fig = plt.figure and then ax = fig.add_subplot(111)
1616
fig, ax = plt.subplots()
1717
ax.plot(t, s)

0 commit comments

Comments
 (0)
0