Fix copy/pasta error in comment

This commit is contained in:
Chris M 2018-06-25 10:54:35 -04:00 committed by GitHub
parent f1e18e8bd8
commit 9792cd6b09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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