From f942a08682dcb7b8c7223d8430b3f106f608d011 Mon Sep 17 00:00:00 2001 From: AdamDang Date: Sun, 29 Apr 2018 13:46:46 +0800 Subject: [PATCH] Typo fix: evalutes->evaluates --- pkg/ignore/rules.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/ignore/rules.go b/pkg/ignore/rules.go index 76f45fc7a..185d289bb 100644 --- a/pkg/ignore/rules.go +++ b/pkg/ignore/rules.go @@ -77,7 +77,7 @@ func (r *Rules) Len() int { return len(r.patterns) } -// Ignore evalutes the file at the given path, and returns true if it should be ignored. +// Ignore evaluates the file at the given path, and returns true if it should be ignored. // // Ignore evaluates path against the rules in order. Evaluation stops when a match // is found. Matching a negative rule will stop evaluation.