From 89301a8ee646ba0648c2a9c818f5d421dea1b3f0 Mon Sep 17 00:00:00 2001 From: Debian Science Team Date: Fri, 3 Apr 2020 21:56:02 +0100 Subject: [PATCH] Fix typos Author: Rebecca N. Palmer Origin: lintian Forwarded: no Gbp-Pq: Name spelling.patch --- pandas/_libs/lib.pyx | 2 +- pandas/_libs/tslibs/timestamps.pyx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pandas/_libs/lib.pyx b/pandas/_libs/lib.pyx index fef17fd4..ed5feabf 100644 --- a/pandas/_libs/lib.pyx +++ b/pandas/_libs/lib.pyx @@ -510,7 +510,7 @@ def maybe_booleans_to_slice(ndarray[uint8_t] mask): @cython.wraparound(False) @cython.boundscheck(False) def array_equivalent_object(left: object[:], right: object[:]) -> bool: - """ perform an element by element comparion on 1-d object arrays + """ perform an element by element comparison on 1-d object arrays taking into account nan positions """ cdef: Py_ssize_t i, n = left.shape[0] diff --git a/pandas/_libs/tslibs/timestamps.pyx b/pandas/_libs/tslibs/timestamps.pyx index c8c6efda..f124d758 100644 --- a/pandas/_libs/tslibs/timestamps.pyx +++ b/pandas/_libs/tslibs/timestamps.pyx @@ -595,7 +595,7 @@ default 'raise' @property def dayofweek(self): """ - Return day of whe week. + Return day of the week. """ return self.weekday() -- 2.30.2