From 91ea22f2d11b4e5035f1acf3a08d6479606a683b Mon Sep 17 00:00:00 2001 From: Matthew Phillips Date: Sat, 14 Dec 2024 09:00:35 -0500 Subject: [PATCH] Link to the correct page for async execution --- docs/guides.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides.md b/docs/guides.md index 7dd845a0..9cfe18a8 100644 --- a/docs/guides.md +++ b/docs/guides.md @@ -9,5 +9,5 @@ These guides are meant to help you along your journey learning Finite State Mach * __[Composition](./guides/composition.html)__: How to use functional composition when building state machines, to maximize code reuse where possible. * __[Nested States](./guides/nested-states.html)__: Create machines with nested states by [invoking](./api/invoke.html) other machines. -* __[Awaiting asynchronous completion](./guides/awaiting-asynchronous-completion.html)__: How to await a machine to enter a `final` state. +* __[Awaiting asynchronous completion](./guides/awaiting-asynchronous-execution.html)__: How to await a machine to enter a `final` state. * __[Comparison with XState](./guides/comparison-with-xstate.html)__: Differences and tradeoffs between Robot and [XState](https://xstate.js.org).