When the code comment in the zsh completion suggests that this file should be copied to `~/.zsh`, many users might be misled to believe that this refers to a file location. But it refers to a directory, and won't work when it is a file. Let's just add a slash, to make it abundantly clear that this must be a directory. (thank you to Johannes Schindelin for the suggested wording and title) Signed-off-by: B. Durant Schoon durant.schoon@xxxxxxxxx --- contrib/completion/git-completion.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/completion/git-completion.zsh b/contrib/completion/git-completion.zsh index 886bf95d1f594..0e63004e2613e 100644 --- a/contrib/completion/git-completion.zsh +++ b/contrib/completion/git-completion.zsh @@ -11,8 +11,8 @@ # # zstyle ':completion:*:*:git:*' script ~/.git-completion.zsh # -# The recommended way to install this script is to copy to '~/.zsh/_git', and -# then add the following to your ~/.zshrc file: +# The recommended way to install this script is to copy to '~/.zsh/_git/', +# and then add the following to your ~/.zshrc file: # # fpath=(~/.zsh $fpath) -- https://github.com/git/git/pull/609