From 49cc520c4673d3bc18e58ce4902222dff9e28fe0 Mon Sep 17 00:00:00 2001 From: Michael Newman Date: Sun, 16 Aug 2026 18:46:47 -0400 Subject: [PATCH] Fix typo in pyenv-version-file --- libexec/pyenv-version-file | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libexec/pyenv-version-file b/libexec/pyenv-version-file index e9fba30b..2e8a23ba 100755 --- a/libexec/pyenv-version-file +++ b/libexec/pyenv-version-file @@ -11,7 +11,7 @@ find_local_version_file() { # Nonexistent paths are UB as of this writing. # Relative ones cause a failure but absolute ones don't [[ $root != /* ]] && root=$(CDPATH= cd -- "$root" && pwd) - # Original Rbenv code supports UNC notaion for Cygwin/MinGW + # Original Rbenv code supports UNC notation for Cygwin/MinGW # (https://github.com/rbenv/rbenv/pull/529) # POSIX.1-2024 still allows to treat // in implementation-specific manner # (https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/V1_chap04.html#tag_04_16)