From 19ae3820bdd612b982b64edbbec2bcf4803d5381 Mon Sep 17 00:00:00 2001 From: Ivan Pozdeev Date: Fri, 26 Jun 2026 20:58:34 +0300 Subject: [PATCH] typo [no ci] --- libexec/pyenv-rehash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libexec/pyenv-rehash b/libexec/pyenv-rehash index b184877d..19d94274 100755 --- a/libexec/pyenv-rehash +++ b/libexec/pyenv-rehash @@ -28,7 +28,7 @@ acquire_lock() { # So check for writablity by trying to write to a different file, # in a way that taxes the usual use case as little as possible. if [[ -z $tested_for_other_write_errors ]]; then - # if lots of (50+) rehashes run concurrentlty, another concurrent rehash + # if lots of (50+) rehashes run concurrently, another concurrent rehash # may delete the temporary file in remove_*_shims() before we do so ( t="$(TMPDIR="$SHIM_PATH" mktemp)" && rm -f "$t" ) \ && tested_for_other_write_errors=1 \