From 5db40465955a30acd601d0c3d7ceaebe34d28d11 Mon Sep 17 00:00:00 2001 From: Joseph Hardin Date: Tue, 23 Nov 2021 09:27:45 -0800 Subject: [PATCH] Fixed a mispelling of dimension in dataarray documentation for from_dict (#6020) --- xarray/core/dataarray.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xarray/core/dataarray.py b/xarray/core/dataarray.py index 24e5f5736b0..05d06400f2e 100644 --- a/xarray/core/dataarray.py +++ b/xarray/core/dataarray.py @@ -2887,7 +2887,7 @@ def from_dict(cls, d: dict) -> "DataArray": "name": "a", } - where "t" is the name of the dimesion, "a" is the name of the array, + where "t" is the name of the dimension, "a" is the name of the array, and x and t are lists, numpy.arrays, or pandas objects. Parameters