Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/guides/debouncing.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ searchInput.addEventListener('input', (e) => {
})
```

> **Note:** When using React, prefer `useDebounceCallback` hook over the `debounce` function for better integration with React's lifecycle and automatic cleanup.
> **Note:** When using React, prefer `useDebouncedCallback` hook over the `debounce` function for better integration with React's lifecycle and automatic cleanup.

### Advanced Usage with `Debouncer` Class

Expand Down Expand Up @@ -283,4 +283,4 @@ Each framework adapter builds convenient hooks and functions around the debounce

---

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