Skip to content

Commit

Permalink
Update docs for memoizeWith
Browse files Browse the repository at this point in the history
R.memoize does not exist anymore. Update the documentation with no reference to R.memoize
  • Loading branch information
peoplenarthax committed Nov 26, 2018
1 parent c44a544 commit 9f45be3
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions source/memoizeWith.js
Expand Up @@ -4,11 +4,10 @@ import _has from './internal/_has';


/**
* A customisable version of [`R.memoize`](#memoize). `memoizeWith` takes an
* additional function that will be applied to a given argument set and used to
* create the cache key under which the results of the function to be memoized
* will be stored. Care must be taken when implementing key generation to avoid
* clashes that may overwrite previous entries erroneously.
* Takes an additional function that will be applied to a given argument set
* and used to create the cache key under which the results of the function to be
* memoized will be stored. Care must be taken when implementing key generation
* to avoid clashes that may overwrite previous entries erroneously.
*
*
* @func
Expand Down

0 comments on commit 9f45be3

Please sign in to comment.