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
commit 4b29e39877
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