Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bff206e

Browse files
authored
Merge pull request #18914 from bdice/patch-1
Fix typo in error message: interable -> iterable.
2 parents ce29648 + a4d86af commit bff206e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/axes/_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1852,7 +1852,7 @@ def axis(self, *args, emit=True, **kwargs):
18521852
xmin, xmax, ymin, ymax = limits
18531853
except (TypeError, ValueError) as err:
18541854
raise TypeError('the first argument to axis() must be an '
1855-
'interable of the form '
1855+
'iterable of the form '
18561856
'[xmin, xmax, ymin, ymax]') from err
18571857
else:
18581858
xmin = kwargs.pop('xmin', None)

0 commit comments

Comments
 (0)