From 12493f3bb673c36e7423787740cd75140a55226c Mon Sep 17 00:00:00 2001 From: hannah Date: Sat, 2 May 2020 23:21:53 -0400 Subject: [PATCH] changed axis to axes --- tutorials/introductory/lifecycle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/introductory/lifecycle.py b/tutorials/introductory/lifecycle.py index 3b3a4cc2d9a4..00732d4acaed 100644 --- a/tutorials/introductory/lifecycle.py +++ b/tutorials/introductory/lifecycle.py @@ -207,7 +207,7 @@ def currency(x, pos): ############################################################################### # We can then apply this function to the labels on our plot. To do this, -# we use the ``xaxis`` attribute of our axis. This lets you perform +# we use the ``xaxis`` attribute of our axes. This lets you perform # actions on a specific axis on our plot. fig, ax = plt.subplots(figsize=(6, 8))