From 681ec0e84af7c155b16ef46122e2a6cea64b585d Mon Sep 17 00:00:00 2001 From: David Brochart Date: Tue, 2 Jul 2019 23:27:40 +0200 Subject: [PATCH] Fix error message (#3076) --- xarray/core/computation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xarray/core/computation.py b/xarray/core/computation.py index 1ad34ddec92..9602dcb30e4 100644 --- a/xarray/core/computation.py +++ b/xarray/core/computation.py @@ -642,7 +642,7 @@ def _apply_with_dask_atop(func, args, input_dims, output_dims, signature, "apply_ufunc with dask='parallelized' consists of " 'multiple chunks, but is also a core dimension. To ' 'fix, rechunk into a single dask array chunk along ' - 'this dimension, i.e., ``.rechunk({})``, but beware ' + 'this dimension, i.e., ``.chunk({})``, but beware ' 'that this may significantly increase memory usage.' .format(dim, n, {dim: -1}))