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

Skip to content

Commit a4d86af

Browse files
authored
Fix typo: interable -> iterable.
1 parent ce29648 commit a4d86af

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)