diff --git a/contrib/completions/bash/s2i b/contrib/completions/bash/s2i index 375351509..925b5e9eb 100644 --- a/contrib/completions/bash/s2i +++ b/contrib/completions/bash/s2i @@ -49,7 +49,7 @@ __s2i_handle_go_custom_completion() local out requestComp lastParam lastChar comp directive args # Prepare the command to request completions for the program. - # Calling ${words[0]} instead of directly s2i allows to handle aliases + # Calling ${words[0]} instead of directly s2i allows handling aliases args=("${words[@]:1}") # Disable ActiveHelp which is not supported for bash completion v1 requestComp="S2I_ACTIVE_HELP=0 ${words[0]} __completeNoDesc ${args[*]}" diff --git a/contrib/completions/zsh/s2i b/contrib/completions/zsh/s2i index 5ded275f5..3db90023e 100644 --- a/contrib/completions/zsh/s2i +++ b/contrib/completions/zsh/s2i @@ -210,7 +210,7 @@ __s2i_handle_go_custom_completion() local out requestComp lastParam lastChar comp directive args # Prepare the command to request completions for the program. - # Calling ${words[0]} instead of directly s2i allows to handle aliases + # Calling ${words[0]} instead of directly s2i allows handling aliases args=("${words[@]:1}") # Disable ActiveHelp which is not supported for bash completion v1 requestComp="S2I_ACTIVE_HELP=0 ${words[0]} __completeNoDesc ${args[*]}"