Skip to content

Commit b42966b

Browse files
committed
Correct wrong correction
1 parent b4137a3 commit b42966b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tutorials/introductory/animation_tutorial.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
# - :class:`~matplotlib.animation.FuncAnimation`: Generate data for first
2525
# frame and then modify this data for each frame to create an animated plot.
2626
#
27-
# - :class:`~matplotlib.animation.FuncAnimation`: Generate a list (iterable)
27+
# - :class:`~matplotlib.animation.ArtistAnimation`: Generate a list (iterable)
2828
# of artists that will draw in each frame in the animation.
2929
#
30-
# :class:`~matplotlib.animation.ArtistAnimation` is more efficient in terms of
30+
# :class:`~matplotlib.animation.FuncAnimation` is more efficient in terms of
3131
# speed and memory as it draws an artist once and then modifies it. On the
3232
# other hand :class:`~matplotlib.animation.ArtistAnimation` is flexible as it
3333
# allows any iterable of artists to be animated in a sequence.

0 commit comments

Comments
 (0)