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 } 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],