Skip to content

Commit

Permalink
docs: remove 'in other libraries.'
Browse files Browse the repository at this point in the history
  • Loading branch information
MarlonPassos-git committed Aug 22, 2024
1 parent 449601d commit ae6258b
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/curry/chain.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/curry/compose.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/curry/debounce.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/curry/flip.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/curry/memo.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/curry/once.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/curry/partial.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/curry/partob.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/curry/proxied.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/curry/throttle.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit ae6258b

Please sign in to comment.