Skip to content

Commit

Permalink
Small typo fix in bash completion
Browse files Browse the repository at this point in the history
  • Loading branch information
paulcsmith authored and ysbaddaden committed Apr 4, 2018
1 parent b5a3a65 commit 011e688
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etc/completion.bash
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ _crystal()
COMPREPLY=( $(compgen -f ${cur}) )
;;
*)
# When any of sumbcommands matches directly
# When any of subcommands matches directly
if [[ "${prev}" == "${program}" && $(compgen -W "${commands}" -- ${cur}) ]] ; then
COMPREPLY=( $(compgen -W "${commands}" -- ${cur}) )
else
Expand Down

0 comments on commit 011e688

Please sign in to comment.