Skip to content

Commit

Permalink
[docs] fix call-apply docs + ref utilities README
Browse files Browse the repository at this point in the history
  • Loading branch information
dmorosinotto committed Sep 16, 2023
1 parent 86c4ffe commit e740bec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ nx generate ngxtension:init
- [create-effect](https://ngxtension.netlify.app/utilities/create-effect)
- [if-validator](https://ngxtension.netlify.app/utilities/if-validator)
- [navigation-end](https://ngxtension.netlify.app/utilities/navigation-end)
- [call-apply](https://ngxtension.netlify.app/utilities/call-apply)
- [trackby-id-prop](https://ngxtension.netlify.app/utilities/trackby-id-prop)

<!-- UTILITIES:END -->

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/utilities/call-apply.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: ngxtension/call-apply
`callPipe` and `applyPipe` are simple standalone pipes that simplify the calling of PURE functions passing params to it; they take advantage of the "memoization" offered by pure pipes in Angular, and ensure that you use them only with PURE functions (aka if you use this inside the body function they throw errors!)

```ts
import { CallPipe, ApplyPipe } from 'ngxtension/if-validation';
import { CallPipe, ApplyPipe } from 'ngxtension/call-apply';
```

## Usage
Expand Down

0 comments on commit e740bec

Please sign in to comment.