From a7acc5d4333ac021c40edf4c0e8dbf3e92765e6a Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Thu, 20 Aug 2020 21:57:53 -0400 Subject: [PATCH] spelling: satisfies PR-URL: https://github.com/npm/node-semver/pull/339 Credit: @jsoref Close: #339 Reviewed-by: @isaacs --- 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 }