From 5c3516cd14075f05adfa39d2725a3cd6fcc36ee5 Mon Sep 17 00:00:00 2001 From: "Juan Picado (@jotadeveloper)" Date: Sun, 4 Dec 2016 15:53:47 +0100 Subject: [PATCH] Update README.md Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6dd4f8b..bc583a8 100644 --- a/README.md +++ b/README.md @@ -102,7 +102,7 @@ There's a `normalizer` option through which we can pass custom cache id normaliz e.g. if we want to memoize a function where argument is a hash object which we do not want to compare by instance but by its content, then we can achieve it as following: ```javascript -var mFn = memoize(function (hash) { +var mfn = memoize(function (hash) { // body of memoized function }, { normalizer: function (args) { // args is arguments object as accessible in memoized function