From affe1f2a3104491e41bd2e5aa7c1edd804747674 Mon Sep 17 00:00:00 2001 From: Mariusz Nowak Date: Tue, 19 Mar 2019 14:02:06 +0100 Subject: [PATCH] docs: fix link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8c71a66..5322081 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Memoization is best technique to save on memory or CPU cycles when we deal with * Can be configured [**for methods**](#memoizing-methods) (when `this` counts in) * Cache [**can be cleared manually**](#manual-clean-up) or [**after specified timeout**](#expire-cache-after-given-period-of-time) * Cache size can be **[limited on LRU basis](#limiting-cache-size)** -* Optionally [**accepts resolvers**](#resolvers) that normalize function arguments before passing them to underlying function. +* Optionally [**accepts resolvers**](#argument-resolvers) that normalize function arguments before passing them to underlying function. * Optional [**reference counter mode**](#reference-counter), that allows more sophisticated cache management * [**Profile tool**](#profiling--statistics) that provides valuable usage statistics * Covered by [**over 500 unit tests**](#tests)