From 6ca981e26018f1253edf3cdf2ba48a7466e81a4f Mon Sep 17 00:00:00 2001 From: Joseph Frazier <1212jtraceur@gmail.com> Date: Mon, 24 Apr 2017 11:36:22 -0400 Subject: [PATCH] Fix typo: specifally -> specifically --- src/util/filter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/filter.js b/src/util/filter.js index d5e0ff25c4..915323c1de 100644 --- a/src/util/filter.js +++ b/src/util/filter.js @@ -114,7 +114,7 @@ export function ignoreLinesToRegex(lines: Array, base: string = '.'): Ar let pattern = line; let isNegation = false; - // hide the fact that it's a negation from minimatch since we'll handle this specifally + // hide the fact that it's a negation from minimatch since we'll handle this specifically // ourselves if (pattern[0] === '!') { isNegation = true;