diff --git a/packages/usehooks-ts/src/useCounter/useCounter.ts b/packages/usehooks-ts/src/useCounter/useCounter.ts index 7744abb0..68556d80 100644 --- a/packages/usehooks-ts/src/useCounter/useCounter.ts +++ b/packages/usehooks-ts/src/useCounter/useCounter.ts @@ -17,7 +17,7 @@ type UseCounterReturn = { } /** - * Custom hook that manages a counter with increment, decrement, reset, and setCount functionalities. + * Custom hook that manages a counter with increment, decrement, reset, and setCount functionality. * @param {number} [initialValue] - The initial value for the counter. * @returns {UseCounterReturn} An object containing the current count and functions to interact with the counter. * @public