Skip to content

Commit f227432

Browse files
Update coroutines-basics.md
1 parent 1ccc968 commit f227432

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/topics/coroutines-basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This section covers basic coroutine concepts.
66

77
## Your first coroutine
88

9-
A _coroutine_ is an instance of suspendable computation. It is conceptually similar to a thread, in the sense that it
9+
A _coroutine_ is an instance of a suspendable computation. It is conceptually similar to a thread, in the sense that it
1010
takes a block of code to run that works concurrently with the rest of the code.
1111
However, a coroutine is not bound to any particular thread. It may suspend its execution in one thread and resume in another one.
1212

0 commit comments

Comments
 (0)