Skip to content

Commit 6e2c393

Browse files
authored
Fix typo (#2842)
Fixes #2840
1 parent 196dafc commit 6e2c393

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/concurrency/async/state-machine.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ fn two_d10(modifier: u32) -> TwoD10 {
3333
enum TwoD10 {
3434
// Function has not begun yet.
3535
Init { modifier: u32 },
36-
// Waitig for first `.await` to complete.
36+
// Waiting for first `.await` to complete.
3737
FirstRoll { modifier: u32, fut: RollD10Future },
38-
// Waitig for second `.await` to complete.
38+
// Waiting for second `.await` to complete.
3939
SecondRoll { modifier: u32, first_roll: u32, fut: RollD10Future },
4040
}
4141

0 commit comments

Comments
 (0)