Skip to content

Commit

Permalink
Merge pull request matplotlib#23432 from Davide-sd/doc_animation
Browse files Browse the repository at this point in the history
Fixed typo in docs animation api
  • Loading branch information
timhoffm authored Jul 16, 2022
2 parents 37ccdca + 62d0983 commit 72cee0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/api/animation_api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ artist at a global scope and let Python sort things out. For example ::

fig, ax = plt.subplots()
xdata, ydata = [], []
ln, = plt.plot([], [], 'ro')
ln, = ax.plot([], [], 'ro')

def init():
ax.set_xlim(0, 2*np.pi)
Expand Down

0 comments on commit 72cee0a

Please sign in to comment.