From 88edd84181d493f4af19868b4039ea57cbc793da Mon Sep 17 00:00:00 2001 From: martincornejo Date: Mon, 28 Apr 2025 16:29:20 +0200 Subject: [PATCH] Fix typos: horizonatal -> horizontal --- lib/matplotlib/axes/_axes.pyi | 2 +- lib/matplotlib/pyplot.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/matplotlib/axes/_axes.pyi b/lib/matplotlib/axes/_axes.pyi index 6d9a5d14db72..7c09376e3d8c 100644 --- a/lib/matplotlib/axes/_axes.pyi +++ b/lib/matplotlib/axes/_axes.pyi @@ -590,7 +590,7 @@ class Axes(_AxesBase): weights: ArrayLike | None = ..., *, complementary: bool=..., - orientation: Literal["vertical", "horizonatal"]=..., + orientation: Literal["vertical", "horizontal"]=..., compress: bool=..., data=..., **kwargs diff --git a/lib/matplotlib/pyplot.py b/lib/matplotlib/pyplot.py index 999b8e42120e..499fcf750a5e 100644 --- a/lib/matplotlib/pyplot.py +++ b/lib/matplotlib/pyplot.py @@ -3247,7 +3247,7 @@ def ecdf( weights: ArrayLike | None = None, *, complementary: bool = False, - orientation: Literal["vertical", "horizonatal"] = "vertical", + orientation: Literal["vertical", "horizontal"] = "vertical", compress: bool = False, data=None, **kwargs,