From 64345a71a5ac2a738277011902454f8b89e2f0d7 Mon Sep 17 00:00:00 2001 From: David Poznik Date: Mon, 10 Jan 2022 14:25:49 -0800 Subject: [PATCH] Fix typo in `axhline` docstring --- lib/matplotlib/axes/_axes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/matplotlib/axes/_axes.py b/lib/matplotlib/axes/_axes.py index dde657307e48..6d7d4c3031af 100644 --- a/lib/matplotlib/axes/_axes.py +++ b/lib/matplotlib/axes/_axes.py @@ -675,7 +675,7 @@ def annotate(self, text, xy, *args, **kwargs): @docstring.dedent_interpd def axhline(self, y=0, xmin=0, xmax=1, **kwargs): """ - Add a horizontal line across the axis. + Add a horizontal line across the Axes. Parameters ----------