From 5d6c1744d4564f2916a269bf2dacbf7fc3e1ca28 Mon Sep 17 00:00:00 2001 From: "Joseph C. Hardin" Date: Tue, 23 Nov 2021 08:19:56 -0800 Subject: [PATCH] Fixed a mispelling of dimension in dataarray documentation for from_dict. --- 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