Skip to content

Commit d9f4e06

Browse files
Added `` around function
1 parent 24861ba commit d9f4e06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/06_multiple_futures/04_spawning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Spawning allows you to run a new asynchronous task in the background. This allow
44
while it is running.
55

66
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
7+
To achieve this, we can use the `async_std::task::spawn` function to create and run a new task that handles the
88
connections. This function takes a future and returns a JoinHandle, which can be used to wait for the result of the
99
task once it's completed.
1010

0 commit comments

Comments
 (0)