8000 fix error · matplotlib/matplotlib@826f64f · GitHub
[go: up one dir, main page]

Skip to content

Commit 826f64f

Browse files
author
luke
committed
fix error
1 parent 553918f commit 826f64f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/animation/simple_anim.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Animated line plot
44
==================
55
6-
Output generate via :ref:`matplotlib.animation.Animation.to_jshtml`.
6+
Output generate via `matplotlib.animation.Animation.to_jshtml`.
77
"""
88

99
import numpy as np
@@ -12,7 +12,7 @@
1212

1313
fig, ax = plt.subplots()
1414

15-
x = np.arange(0, 2 * np.pi, 0.01)
15+
x = np.arange(0, 2*np.pi, 0.01)
1616
line, = ax.plot(x, np.sin(x))
1717

1818

0 commit comments

Comments
 (0)
0