From ce913f2b165b41ee3853def745be6909e0ae06b6 Mon Sep 17 00:00:00 2001 From: David Secretan-Hallett Date: Tue, 17 Sep 2024 14:45:49 +1000 Subject: [PATCH] Fixed docstring typo. --- src/emsarray/operations/cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emsarray/operations/cache.py b/src/emsarray/operations/cache.py index f0e0831..8bb461b 100644 --- a/src/emsarray/operations/cache.py +++ b/src/emsarray/operations/cache.py @@ -53,7 +53,7 @@ def hash_string(hash: "hashlib._Hash", value: str) -> None: def hash_int(hash: "hashlib._Hash", value: int) -> None: """ - Updates the provided hash with with a encoded byte representation of the provided int. + Updates the provided hash with an encoded byte representation of the provided int. Parameters ----------