diff options
Diffstat (limited to 'completions')
-rw-r--r-- | completions/bash/podman | 3 | ||||
-rw-r--r-- | completions/zsh/_podman | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/completions/bash/podman b/completions/bash/podman index 4d552b0a7..d8034ad11 100644 --- a/completions/bash/podman +++ b/completions/bash/podman @@ -1244,6 +1244,7 @@ _podman_build() { --no-cache --pull --pull-always + --pull-never --quiet -q --rm @@ -2004,7 +2005,7 @@ _podman_container_run() { return ;; --env|-e) - # we do not append a "=" here because "-e VARNAME" is legal systax, too + # we do not append a "=" here because "-e VARNAME" is legal syntax, too COMPREPLY=( $( compgen -e -- "$cur" ) ) __podman_nospace return diff --git a/completions/zsh/_podman b/completions/zsh/_podman index 530649c0c..228498066 100644 --- a/completions/zsh/_podman +++ b/completions/zsh/_podman @@ -2,7 +2,7 @@ # To get zsh to reread this file: unset -f _podman;rm -f ~/.zcompdump;compinit -# On rereads, reset cache. (Not that the cacheing works, but some day it might) +# On rereads, reset cache. (Not that the caching works, but some day it might) unset -m '_podman_*' ############################################################################### |