From 982b9d2b0a5d9f1b7227090841d40ad1e373bd30 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 1 Nov 2015 15:01:59 -0800 Subject: [PATCH] Use `hexadecimal` instead of `hex` for consistency. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index fbc3b9d1a..09b9ff204 100644 --- a/lodash.js +++ b/lodash.js @@ -129,7 +129,7 @@ /** Used to detect hexadecimal string values. */ var reHasHexPrefix = /^0x/i; - /** Used to detect bad signed hex string values. */ + /** Used to detect bad signed hexadecimal string values. */ var reIsBadHex = /^[-+]0x[0-9a-f]+$/i; /** Used to detect binary string values. */