From 6e2c393364d11d8a11c173d3b042d1ada9ed99c6 Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Wed, 6 Aug 2025 03:50:19 -0400 Subject: [PATCH] Fix typo (#2842) Fixes #2840 --- src/concurrency/async/state-machine.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/concurrency/async/state-machine.md b/src/concurrency/async/state-machine.md index 4531739b..5c387b5e 100644 --- a/src/concurrency/async/state-machine.md +++ b/src/concurrency/async/state-machine.md @@ -33,9 +33,9 @@ fn two_d10(modifier: u32) -> TwoD10 { enum TwoD10 { // Function has not begun yet. Init { modifier: u32 }, - // Waitig for first `.await` to complete. + // Waiting for first `.await` to complete. FirstRoll { modifier: u32, fut: RollD10Future }, - // Waitig for second `.await` to complete. + // Waiting for second `.await` to complete. SecondRoll { modifier: u32, first_roll: u32, fut: RollD10Future }, }