From 42e08d3bb0ff75fd469f4c586c540f1731eb2c4b Mon Sep 17 00:00:00 2001 From: simond07 <58505641+simond07@users.noreply.github.com> Date: Sat, 25 May 2024 13:53:56 +0200 Subject: [PATCH] Solve #28296 Added missing comma --- 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 e7b484bc99a9..9a2b367fb502 100644 --- a/lib/matplotlib/axes/_axes.py +++ b/lib/matplotlib/axes/_axes.py @@ -1589,7 +1589,7 @@ def plot(self, *args, scalex=True, scaley=True, data=None, **kwargs): >>> plot(x1, y1, 'bo') >>> plot(x2, y2, 'go') - - If *x* and/or *y* are 2D arrays a separate data set will be drawn + - If *x* and/or *y* are 2D arrays, a separate data set will be drawn for every column. If both *x* and *y* are 2D, they must have the same shape. If only one of them is 2D with shape (N, m) the other must have length N and will be used for every data set m.