From 57471f79526745758f8d1bf5b95ff370ae694d15 Mon Sep 17 00:00:00 2001 From: yanamis Date: Sun, 27 Apr 2025 22:21:46 +0200 Subject: [PATCH] DOC: Add missing period in sample docstring --- pandas/core/sample.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/sample.py b/pandas/core/sample.py index 5b1c4b6a331f5..4f12563e3c5e2 100644 --- a/pandas/core/sample.py +++ b/pandas/core/sample.py @@ -123,7 +123,7 @@ def sample( random_state: np.random.RandomState | np.random.Generator, ) -> np.ndarray: """ - Randomly sample `size` indices in `np.arange(obj_len)` + Randomly sample `size` indices in `np.arange(obj_len)`. Parameters ----------