Skip to content

Commit a899ece

Browse files
authored
Fix typo (mainmatter#160)
1 parent a0537f8 commit a899ece

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

book/src/08_futures/01_async_fn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ asynchronous programming in Rust.
107107
The entrypoint of your executable, the `main` function, must be a synchronous function.
108108
That's where you're supposed to set up and launch your chosen async runtime.
109109

110-
Most runtimes provides a macro to make this easier. For `tokio`, it's `tokio::main`:
110+
Most runtimes provide a macro to make this easier. For `tokio`, it's `tokio::main`:
111111

112112
```rust
113113
#[tokio::main]

0 commit comments

Comments
 (0)