From ac0a0ea07eb6044cb000e52a13b96e2eaee230ae Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 12 Dec 2015 11:03:34 -0800 Subject: [PATCH] Add `delete` to `Map` interface note. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index ecea42aa2..bf232abc0 100644 --- a/lodash.js +++ b/lodash.js @@ -8596,7 +8596,7 @@ * **Note:** The cache is exposed as the `cache` property on the memoized * function. Its creation may be customized by replacing the `_.memoize.Cache` * constructor with one whose instances implement the [`Map`](http://ecma-international.org/ecma-262/6.0/#sec-properties-of-the-map-prototype-object) - * method interface of `get`, `has`, and `set`. + * method interface of `delete`, `get`, `has`, and `set`. * * @static * @memberOf _