We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24861ba commit d9f4e06Copy full SHA for d9f4e06
src/06_multiple_futures/04_spawning.md
@@ -4,7 +4,7 @@ Spawning allows you to run a new asynchronous task in the background. This allow
4
while it is running.
5
6
Say we have a web server that wants to accept connections without blocking the main thread.
7
-To achieve this, we can use the async_std::task::spawn function to create and run a new task that handles the
+To achieve this, we can use the `async_std::task::spawn` function to create and run a new task that handles the
8
connections. This function takes a future and returns a JoinHandle, which can be used to wait for the result of the
9
task once it's completed.
10
0 commit comments