From cca942ea0bcf594a0115edb67b446c92b86d5395 Mon Sep 17 00:00:00 2001 From: Sorin Ionescu Date: Tue, 10 Apr 2012 23:15:19 -0400 Subject: [PATCH] Add a missing article in a comment --- helper.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helper.zsh b/helper.zsh index b127bc9..89f830e 100644 --- a/helper.zsh +++ b/helper.zsh @@ -5,7 +5,7 @@ # Sorin Ionescu # -# Checks boolean variable for "true". +# Checks a boolean variable for "true". # Case insensitive: "1", "y", "yes", "t", "true", "o", and "on". function is-true { [[ -n "$1" && "$1" == (1|[Yy]([Ee][Ss]|)|[Tt]([Rr][Uu][Ee]|)|[Oo]([Nn]|)) ]]