fix minor typos

This commit is contained in:
Greg Gauthier 2024-03-01 11:09:50 +00:00
parent 04153c29be
commit 79ccc604fd
2 changed files with 2 additions and 2 deletions

View File

@ -77,7 +77,7 @@ function cecho(){
NC="\033[0m" # No Color
# printf "${(P)1}${2} ${NC}\n" # <-- zsh
printf "${!1}${!2}${3}${NC}\n" # <-- bash
printf "${!1}${!2}${3} ${NC}\n" # <-- bash
}
if [ -z "$1" ]

View File

@ -31,5 +31,5 @@ if [[ "${FIXED}" == *"*"* ]]; then
else
parseResults "${FIXED}"
cecho IBlack On_IRed "INCORRECT!"
cecho Black On_Yellow "There are ${LISTCOUNT} suggested corrections for '${QUERYTERM}': ${WORDLIST}. "
cecho IYellow On_Black "There are ${LISTCOUNT} suggested corrections for '${QUERYTERM}': ${WORDLIST}."
fi