Skip to content

Commit 91f3bc4

Browse files
committed
DOC: fix tense in documentation
1 parent c8c47c0 commit 91f3bc4

15 files changed

+15
-15
lines changed

examples/animation/animate_decay.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
- using a generator to drive an animation,
99
- changing axes limits during an animation.
1010
11-
Output generate via `matplotlib.animation.Animation.to_jshtml`.
11+
Output generated via `matplotlib.animation.Animation.to_jshtml`.
1212
"""
1313

1414
import itertools

examples/animation/animated_histogram.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def animate(frame_number):
4545
# ``prepare_animation`` will define ``animate`` function working with supplied
4646
# `.BarContainer`, all this is used to setup `.FuncAnimation`.
4747

48-
# Output generate via `matplotlib.animation.Animation.to_jshtml`.
48+
# Output generated via `matplotlib.animation.Animation.to_jshtml`.
4949

5050
fig, ax = plt.subplots()
5151
_, _, bar_container = ax.hist(data, HIST_BINS, lw=1,

examples/animation/animation_demo.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
1212
Note that calling `time.sleep` instead of `~.pyplot.pause` would *not* work.
1313
14-
Output generate via `matplotlib.animation.Animation.to_jshtml`.
14+
Output generated via `matplotlib.animation.Animation.to_jshtml`.
1515
"""
1616

1717
import matplotlib.pyplot as plt

examples/animation/bayes_update.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
The vertical line represents the theoretical value to which the plotted
99
distribution should converge.
1010
11-
Output generate via `matplotlib.animation.Animation.to_jshtml`.
11+
Output generated via `matplotlib.animation.Animation.to_jshtml`.
1212
"""
1313

1414
import math

examples/animation/double_pendulum.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Double pendulum formula translated from the C code at
99
http://www.physics.usyd.edu.au/~wheat/dpend_html/solve_dpend.c
1010
11-
Output generate via `matplotlib.animation.Animation.to_jshtml`.
11+
Output generated via `matplotlib.animation.Animation.to_jshtml`.
1212
"""
1313

1414
from numpy import sin, cos

examples/animation/dynamic_image.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Animated image using a precomputed list of images
44
=================================================
55
6-
Output generate via `matplotlib.animation.Animation.to_jshtml`.
6+
Output generated via `matplotlib.animation.Animation.to_jshtml`.
77
"""
88

99
import numpy as np

examples/animation/frame_grabbing_sgskip.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
file. This avoids any event loop integration, and thus works even with the Agg
88
backend. This is not recommended for use in an interactive setting.
99
10-
Output generate via `matplotlib.animation.Animation.to_jshtml`.
10+
Output generated via `matplotlib.animation.Animation.to_jshtml`.
1111
"""
1212

1313
import numpy as np

examples/animation/multiple_axes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
- how animation across multiple subplots works,
99
- using a figure artist in the animation.
1010
11-
Output generate via `matplotlib.animation.Animation.to_jshtml`.
11+
Output generated via `matplotlib.animation.Animation.to_jshtml`.
1212
"""
1313

1414
import numpy as np

examples/animation/pause_resume.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
You can copy and paste individual parts, or download the entire example
1717
using the link at the bottom of the page.
1818
19-
Output generate via `matplotlib.animation.Animation.to_jshtml`.
19+
Output generated via `matplotlib.animation.Animation.to_jshtml`.
2020
"""
2121

2222
import matplotlib.pyplot as plt

examples/animation/rain.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Author: Nicolas P. Rougier
1010
11-
Output generate via `matplotlib.animation.Animation.to_jshtml`.
11+
Output generated via `matplotlib.animation.Animation.to_jshtml`.
1212
"""
1313

1414
import numpy as np

examples/animation/random_walk.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Animated 3D random walk
44
=======================
55
6-
Output generate via `matplotlib.animation.Animation.to_jshtml`.
6+
Output generated via `matplotlib.animation.Animation.to_jshtml`.
77
"""
88

99
import numpy as np

examples/animation/simple_anim.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Animated line plot
44
==================
55
6-
Output generate via `matplotlib.animation.Animation.to_jshtml`.
6+
Output generated via `matplotlib.animation.Animation.to_jshtml`.
77
"""
88

99
import numpy as np

examples/animation/simple_scatter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Animated scatter saved as GIF
44
=============================
55
6-
Output generate via `matplotlib.animation.Animation.to_jshtml`.
6+
Output generated via `matplotlib.animation.Animation.to_jshtml`.
77
"""
88
import numpy as np
99
import matplotlib.pyplot as plt

examples/animation/strip_chart.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Emulates an oscilloscope.
77
8-
Output generate via `matplotlib.animation.Animation.to_jshtml`.
8+
Output generated via `matplotlib.animation.Animation.to_jshtml`.
99
"""
1010

1111
import numpy as np

examples/animation/unchained.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Author: Nicolas P. Rougier
1010
11-
Output generate via `matplotlib.animation.Animation.to_jshtml`.
11+
Output generated via `matplotlib.animation.Animation.to_jshtml`.
1212
"""
1313

1414
import numpy as np

0 commit comments

Comments
 (0)