From a454b3a737c0d57297a35b278623e6c28db35cea Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Thu, 20 Aug 2020 21:57:06 -0400 Subject: [PATCH 1/2] spelling: intersection --- test/fixtures/comparator-intersection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fixtures/comparator-intersection.js b/test/fixtures/comparator-intersection.js index e95cb205..5f24acce 100644 --- a/test/fixtures/comparator-intersection.js +++ b/test/fixtures/comparator-intersection.js @@ -1,4 +1,4 @@ -// c0, c1, expected interesection +// c0, c1, expected intersection module.exports = [ // One is a Version ['1.3.0', '>=1.3.0', true], From d71d51ca0b84101d81f1d34b2ebec7952c5c4e67 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Thu, 20 Aug 2020 21:57:53 -0400 Subject: [PATCH 2/2] spelling: satisfies --- ranges/outside.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ranges/outside.js b/ranges/outside.js index e35ed117..2a4b0a13 100644 --- a/ranges/outside.js +++ b/ranges/outside.js @@ -32,7 +32,7 @@ const outside = (version, range, hilo, options) => { throw new TypeError('Must provide a hilo val of "<" or ">"') } - // If it satisifes the range it is not outside + // If it satisfies the range it is not outside if (satisfies(version, range, options)) { return false }