diff --git a/bash.md b/bash.md index 4b1a704d3..a498fc789 100644 --- a/bash.md +++ b/bash.md @@ -80,7 +80,7 @@ See: [Functions](#functions) ```bash if [ -z "$string" ]; then echo "String is empty" -elsif [ -n "$string" ]; then +elif [ -n "$string" ]; then echo "String is not empty" fi ```