From c68e191f41a4d67ab8f884f27e332773f270f1f9 Mon Sep 17 00:00:00 2001 From: Michael Delgado Date: Mon, 29 Nov 2021 15:47:13 -0800 Subject: [PATCH] fix grammatical typo in docs very simple fix in the [broadcasting by dimension name](http://xarray.pydata.org/en/stable/user-guide/computation.html#broadcasting-by-dimension-name) docs: > ``DataArray`` objects ~~are~~ automatically align themselves [...] by dimension name instead of axis order. --- doc/user-guide/computation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/user-guide/computation.rst b/doc/user-guide/computation.rst index fc3c457308f..f58767efb29 100644 --- a/doc/user-guide/computation.rst +++ b/doc/user-guide/computation.rst @@ -546,7 +546,7 @@ two gaussian peaks: Broadcasting by dimension name ============================== -``DataArray`` objects are automatically align themselves ("broadcasting" in +``DataArray`` objects automatically align themselves ("broadcasting" in the numpy parlance) by dimension name instead of axis order. With xarray, you do not need to transpose arrays or insert dimensions of length 1 to get array operations to work, as commonly done in numpy with :py:func:`numpy.reshape` or