From a4d86afbcbedb97055a54c81b28c425cacc6817f Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Sat, 7 Nov 2020 15:54:46 -0600 Subject: [PATCH] Fix typo: interable -> iterable. --- lib/matplotlib/axes/_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/matplotlib/axes/_base.py b/lib/matplotlib/axes/_base.py index f8ad75bb11ea..7c9185458303 100644 --- a/lib/matplotlib/axes/_base.py +++ b/lib/matplotlib/axes/_base.py @@ -1852,7 +1852,7 @@ def axis(self, *args, emit=True, **kwargs): xmin, xmax, ymin, ymax = limits except (TypeError, ValueError) as err: raise TypeError('the first argument to axis() must be an ' - 'interable of the form ' + 'iterable of the form ' '[xmin, xmax, ymin, ymax]') from err else: xmin = kwargs.pop('xmin', None)