diff --git a/index.d.ts b/index.d.ts index 4809fba..2fd7e28 100644 --- a/index.d.ts +++ b/index.d.ts @@ -69,7 +69,7 @@ export type Options = { await throttled(); //=> Executing... //=> Executing... - //=> Reached the interval limit, the call is delayed + //=> Reached interval limit, call is delayed //=> Executing... ``` */ diff --git a/readme.md b/readme.md index 1aafc8a..4a50129 100644 --- a/readme.md +++ b/readme.md @@ -103,7 +103,7 @@ await throttled(); await throttled(); //=> Executing... //=> Executing... -//=> Reached the interval limit, the call is delayed +//=> Reached interval limit, call is delayed //=> Executing... ```