You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# CppCoro - A coroutine library for C++
2
2
3
-
The 'cppcoro' library provides a set of general-purpose primitives for making use of the coroutines TS proposal described in [N4680](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2017/n4680.pdf).
3
+
The 'cppcoro' library provides a large set of general-purpose primitives for making use of the coroutines TS proposal described in [N4680](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2017/n4680.pdf).
4
4
5
5
These include:
6
6
* Coroutine Types
@@ -168,7 +168,7 @@ namespace cppcoro
168
168
}
169
169
```
170
170
171
-
You create a `task<T>` object by calling a coroutine function that returns
171
+
You can create a `task<T>` object by calling a coroutine function that returns
172
172
a `task<T>`.
173
173
174
174
The coroutine must contain a usage of either `co_await` or `co_return`.
0 commit comments