From aaae999bfd4b90aaaf13fea7ac3279d26562ce70 Mon Sep 17 00:00:00 2001 From: lumbric Date: Mon, 1 Apr 2019 13:18:28 +0200 Subject: [PATCH] Fix minor typo in docstring (#2860) --- xarray/core/alignment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xarray/core/alignment.py b/xarray/core/alignment.py index 71cdfdebb61..af08eef268f 100644 --- a/xarray/core/alignment.py +++ b/xarray/core/alignment.py @@ -298,7 +298,7 @@ def reindex_variables( * nearest: use nearest valid index value tolerance : optional Maximum distance between original and new labels for inexact matches. - The values of the index at the matching locations most satisfy the + The values of the index at the matching locations must satisfy the equation ``abs(index[indexer] - target) <= tolerance``. copy : bool, optional If ``copy=True``, data in the return values is always copied. If