1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-08-08 08:22:52 +02:00
Fixes #2840
This commit is contained in:
Dustin J. Mitchell
2025-08-06 03:50:19 -04:00
committed by GitHub
parent 196dafc7e8
commit 6e2c393364

View File

@ -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 },
}