properly built manuscript

This commit is contained in:
CoolOppo
2018-06-28 04:40:27 -04:00
parent dd9a4ee438
commit 5f0c65e7a3
3 changed files with 5 additions and 4 deletions

View File

@@ -366,7 +366,7 @@ if [[ "$var" == *sub_string ]]; then
printf '%s\n' "var ends with sub_string."
fi
# Inverse (var does not start with sub_string).
# Inverse (var does not end with sub_string).
if [[ "$var" != *sub_string ]]; then
printf '%s\n' "var does not end with sub_string."
fi