From 7e1be76d541cdfc57a6f3d2a2f573d94c85f34ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Defferrard?= Date: Tue, 25 Aug 2020 00:19:36 +0200 Subject: [PATCH] doc: unify vlines and hlines --- lib/matplotlib/axes/_axes.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/matplotlib/axes/_axes.py b/lib/matplotlib/axes/_axes.py index 8cda190f22b5..2cf3e602c27b 100644 --- a/lib/matplotlib/axes/_axes.py +++ b/lib/matplotlib/axes/_axes.py @@ -1210,8 +1210,6 @@ def hlines(self, y, xmin, xmax, colors=None, linestyles='solid', def vlines(self, x, ymin, ymax, colors=None, linestyles='solid', label='', **kwargs): """ - Plot vertical lines. - Plot vertical lines at each *x* from *ymin* to *ymax*. Parameters