Skip to content

Commit 7947c98

Browse files
authored
docs: typo in Debouncing Guide (#89)
1 parent 29c04e8 commit 7947c98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/guides/debouncing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ searchInput.addEventListener('input', (e) => {
5858
})
5959
```
6060

61-
> **Note:** When using React, prefer `useDebounceCallback` hook over the `debounce` function for better integration with React's lifecycle and automatic cleanup.
61+
> **Note:** When using React, prefer `useDebouncedCallback` hook over the `debounce` function for better integration with React's lifecycle and automatic cleanup.
6262
6363
### Advanced Usage with `Debouncer` Class
6464

@@ -300,4 +300,4 @@ Each framework adapter builds convenient hooks and functions around the debounce
300300

301301
---
302302

303-
For asynchronous debouncing (e.g., API calls, async operations), see the [Async Debouncing Guide](../async-debouncing.md).
303+
For asynchronous debouncing (e.g., API calls, async operations), see the [Async Debouncing Guide](../async-debouncing.md).

0 commit comments

Comments
 (0)