Skip to content

Commit e8c677c

Browse files
committed
Fixed reference for pyplot.subplots
1 parent 6ead780 commit e8c677c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tutorials/introductory/getting_started.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -231,10 +231,10 @@
231231
# --------------------------------------------
232232
#
233233
# Explicit programming for Matplotlib involves calling the function
234-
# `pyploy.subplots` in the ``pyplot`` module once. This returns a group of an
235-
# explicit Figure and Axes to be unpacked as part of variable assignment. More
236-
# than one Axes is configurable; however, each Axes only corresponds to a
237-
# single Figure.
234+
# `matplotlib.pyplot.subplots` in the ``pyplot`` module once. This returns a
235+
# group of an explicit Figure and Axes to be unpacked as part of variable
236+
# assignment. More than one Axes is configurable; however, each Axes only
237+
# corresponds to a single Figure.
238238
#
239239
# Each Axes has its own methods to graph data. In addition, each Axes
240240
# also uses separate methods to create and manage objects within a Figure.

0 commit comments

Comments
 (0)