Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos in debounce documentation #696

Merged
merged 2 commits into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions .changeset/seven-rockets-rescue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"inngest": patch
---

Fix typos in debounce documentation
4 changes: 2 additions & 2 deletions packages/inngest/src/components/InngestFunction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ export namespace InngestFunction {
* the function will not run until at least `period` has elapsed.
*
* If any new events are received that match the same debounce `key`, the
* function is reshceduled for another `period` delay, and the triggering
* function is rescheduled for another `period` delay, and the triggering
* event is replaced with the latest event received.
*
* See the [Debounce documentation](https://innge.st/debounce) for more
Expand All @@ -440,7 +440,7 @@ export namespace InngestFunction {
key?: string;

/**
* The period of time to after receiving the last trigger to run the
* The period of time to delay after receiving the last trigger to run the
* function.
*
* See [Debounce documentation](https://innge.st/debounce) for more
Expand Down
Loading