From 5117150a84c7d0b95ae717285c054981d9d5a95e Mon Sep 17 00:00:00 2001 From: Jonhnny Weslley Date: Wed, 24 Nov 2010 10:17:34 -0300 Subject: [PATCH] fixed typo error Signed-off-by: Tj Holowaychuk --- bin/git-ignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/git-ignore b/bin/git-ignore index a117fd6..c3ab6a4 100755 --- a/bin/git-ignore +++ b/bin/git-ignore @@ -19,7 +19,7 @@ if [ ! -z "$template" ]; then case "$count" in 0) echo "The pattern '$template' does not match any available templates." && available_templates | less && exit 1;; 1) find $gitignoredir -name $(selected_template).gitignore -exec cat {} \; >> .gitignore && echo "... added patterns from template '$(selected_template)'";; - *) echo "Be more specific. $count macthes found:" && selected_template | grep --color $template && exit 2;; + *) echo "Be more specific. $count matches found:" && selected_template | grep --color $template && exit 2;; esac fi