From b290bed4094e12b83b5e6fbe2c7638d5b7defef9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milie=20Feral?= Date: Mon, 30 Mar 2020 15:55:04 +0200 Subject: [PATCH] [python] matplotlib: fix typo in ErrorValue --- python/port/mod/matplotlib/pyplot/modpyplot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/port/mod/matplotlib/pyplot/modpyplot.cpp b/python/port/mod/matplotlib/pyplot/modpyplot.cpp index c8e67f872..cc99d0c5a 100644 --- a/python/port/mod/matplotlib/pyplot/modpyplot.cpp +++ b/python/port/mod/matplotlib/pyplot/modpyplot.cpp @@ -122,7 +122,7 @@ mp_obj_t modpyplot_axis(size_t n_args, const mp_obj_t *args) { sPlotStore->setYMax(mp_obj_get_float(items[3])); sPlotStore->setAxesAuto(false); } else { - mp_raise_TypeError("the first argument to axis() must be an interable of the form [xmin, xmax, ymin, ymax]"); + mp_raise_TypeError("the first argument to axis() must be an iterable of the form [xmin, xmax, ymin, ymax]"); } }