diff --git a/docs/curry/chain.mdx b/docs/curry/chain.mdx index e655b6a7..db82f82a 100644 --- a/docs/curry/chain.mdx +++ b/docs/curry/chain.mdx @@ -48,7 +48,7 @@ gods.map(getUpperName) // => ['RA', 'ZEUS', 'LOKI'] ### Search terms -- Often called `compose`, `pipe`, or `flow` in other libraries. +- Often called `compose`, `pipe`, or `flow` ### Popular use cases diff --git a/docs/curry/compose.mdx b/docs/curry/compose.mdx index e90f33dc..4e99cf43 100644 --- a/docs/curry/compose.mdx +++ b/docs/curry/compose.mdx @@ -39,7 +39,7 @@ decomposed() // => 2 ### Search terms -- Often called `composeFunctions`, `chain`, or `pipeline` in other libraries. +- Often called `composeFunctions`, `chain`, or `pipeline` ### Popular use cases diff --git a/docs/curry/debounce.mdx b/docs/curry/debounce.mdx index 21f01ecc..448832e6 100644 --- a/docs/curry/debounce.mdx +++ b/docs/curry/debounce.mdx @@ -89,7 +89,7 @@ setTimeout(() => { ### Search terms -- Often called `debounce`, `debouncedFunc`, or `throttleDebounce` in other libraries. +- Often called `debounce`, `debouncedFunc`, or `throttleDebounce` ### Popular use cases diff --git a/docs/curry/flip.mdx b/docs/curry/flip.mdx index 7220577f..78d54b05 100644 --- a/docs/curry/flip.mdx +++ b/docs/curry/flip.mdx @@ -21,7 +21,7 @@ Note that functions with more than two arguments are not supported. ### Search terms -- Often called `flipArgs`, `reverseArgs`, or `swapParams` in other libraries. +- Often called `flipArgs`, `reverseArgs`, or `swapParams` ### Popular use cases diff --git a/docs/curry/memo.mdx b/docs/curry/memo.mdx index f0b6a4c6..f4eca580 100644 --- a/docs/curry/memo.mdx +++ b/docs/curry/memo.mdx @@ -65,7 +65,7 @@ beta === now // => false ### Search terms -- Often called `memoize`, `cacheFunction`, or `remember` in other libraries. +- Often called `memoize`, `cacheFunction`, or `remember` ### Popular use cases diff --git a/docs/curry/once.mdx b/docs/curry/once.mdx index f029d3fd..78e69c5f 100644 --- a/docs/curry/once.mdx +++ b/docs/curry/once.mdx @@ -33,7 +33,7 @@ fn() // 0.3 ### Search terms -- Often called `once`, `runOnce`, or `singleCall` in other libraries. +- Often called `once`, `runOnce`, or `singleCall` ### Popular use cases diff --git a/docs/curry/partial.mdx b/docs/curry/partial.mdx index 5a910a43..ece1f088 100644 --- a/docs/curry/partial.mdx +++ b/docs/curry/partial.mdx @@ -19,7 +19,7 @@ addFive(2) // => 7 ### Search terms -- Often called `partial`, `partialApply`, or `preFillArgs` in other libraries. +- Often called `partial`, `partialApply`, or `preFillArgs` ### Popular use cases diff --git a/docs/curry/partob.mdx b/docs/curry/partob.mdx index 1b583b6a..4ed6a420 100644 --- a/docs/curry/partob.mdx +++ b/docs/curry/partob.mdx @@ -19,7 +19,7 @@ addFive({ b: 2 }) // => 7 ### Search terms -- Often called `partialObject`, `partob`, or `partialProps` in other libraries. +- Often called `partialObject`, `partob`, or `partialProps` ### Popular use cases diff --git a/docs/curry/proxied.mdx b/docs/curry/proxied.mdx index b37533f4..7bd956f1 100644 --- a/docs/curry/proxied.mdx +++ b/docs/curry/proxied.mdx @@ -30,7 +30,7 @@ person.getLocation() // => here ### Search terms -- Often called `proxied`, `dynamicProxy`, or `propertyInterceptor` in other libraries. +- Often called `proxied`, `dynamicProxy`, or `propertyInterceptor` ### Popular use cases diff --git a/docs/curry/throttle.mdx b/docs/curry/throttle.mdx index 5e125957..8467e836 100644 --- a/docs/curry/throttle.mdx +++ b/docs/curry/throttle.mdx @@ -65,7 +65,7 @@ In this diagram, 'x' represents function invocations, and '-' represents time pa ### Search terms -- Often called `throttle`, `limitCalls`, or `rateLimit` in other libraries. +- Often called `throttle`, `limitCalls`, or `rateLimit` ### Popular use cases