From 424d9fc34e174d497340f1f62622c1a26b1b6ee6 Mon Sep 17 00:00:00 2001 From: Younes Fkihi <13110140+younesfkihi@users.noreply.github.com> Date: Mon, 6 Nov 2017 20:44:18 +0100 Subject: [PATCH] Fix typo in `inRange` (#3478) --- inRange.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inRange.js b/inRange.js index 08680371d..ce2962de0 100644 --- a/inRange.js +++ b/inRange.js @@ -1,7 +1,7 @@ import baseInRange from './.internal/baseInRange.js' /** - * Checks if `n` is between `start` and up to, but not including, `end`. If + * Checks if `number` is between `start` and up to, but not including, `end`. If * `end` is not specified, it's set to `start` with `start` then set to `0`. * If `start` is greater than `end` the params are swapped to support * negative ranges.