From a11cd074f12891160586a9714c0db8b3f6c904ce Mon Sep 17 00:00:00 2001 From: "Christine P. Chai" Date: Fri, 17 Oct 2025 17:44:44 -0700 Subject: [PATCH] DOC: Correct a typo: Lets -> Let's --- pandas/core/nanops.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandas/core/nanops.py b/pandas/core/nanops.py index 2c3b70f7efd2e..772f425beed96 100644 --- a/pandas/core/nanops.py +++ b/pandas/core/nanops.py @@ -1366,7 +1366,7 @@ def nankurt( # With a few modifications, like using the maximum value instead of the averages # and some adaptations because they use the average and we use the sum for `m2`. # We need to estimate an upper bound to the error to consider the data constant. - # Lets call: + # Let's call: # x: true value in data # y: floating point representation # e: relative approximation error @@ -1377,7 +1377,7 @@ def nankurt( # (|x - y|/|x|)² <= e² # Σ (|x - y|/|x|)² <= ne² # - # Lets say that the fperr upper bound for m2 is constrained by the summation. + # Let's say that the fperr upper bound for m2 is constrained by the summation. # |m2 - y|/|m2| <= ne² # |m2 - y| <= n|m2|e² #