Merge pull request #23 from tebriel/patch-1

Fix copy/pasta error in comment
This commit is contained in:
Dylan Araps
2018-06-26 07:25:57 +10:00
committed by GitHub

View File

@@ -538,7 +538,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