From 78b1cad1ec2aa5fcd3def7aea9e75ca0e637faac Mon Sep 17 00:00:00 2001 From: albertchae <217050+albertchae@users.noreply.github.com> Date: Tue, 3 Sep 2024 04:22:48 -0700 Subject: [PATCH 1/2] Fix typos in debounce documentation --- packages/inngest/src/components/InngestFunction.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/inngest/src/components/InngestFunction.ts b/packages/inngest/src/components/InngestFunction.ts index c1095d7a9..73f082073 100644 --- a/packages/inngest/src/components/InngestFunction.ts +++ b/packages/inngest/src/components/InngestFunction.ts @@ -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 @@ -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 From af03af772d14d272bfc310d53dc741a86ecc66da Mon Sep 17 00:00:00 2001 From: Jack Williams Date: Tue, 3 Sep 2024 19:30:53 +0100 Subject: [PATCH 2/2] Create seven-rockets-rescue.md --- .changeset/seven-rockets-rescue.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/seven-rockets-rescue.md diff --git a/.changeset/seven-rockets-rescue.md b/.changeset/seven-rockets-rescue.md new file mode 100644 index 000000000..c63a69bcd --- /dev/null +++ b/.changeset/seven-rockets-rescue.md @@ -0,0 +1,5 @@ +--- +"inngest": patch +--- + +Fix typos in debounce documentation