File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
sources/modules/concurrency-parallelism Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ Advanced --- Add external libraries as a dependencies
2424_ Why is this important?_
2525_ Why do we want to learn/teach this topic?_
2626
27- * Asynchronous programming allows for non-blocking functions launches and enables that functions are executed asynchronoulsy .
28- * Asynchronous programming is one form of parallism and concurrency included in the C++ standard
27+ * Asynchronous programming allows for non-blocking functions launches and enables that functions are executed asynchronously .
28+ * Asynchronous programming is one form of parallelism and concurrency included in the C++ standard
2929
3030### Topic introduction
3131
@@ -81,14 +81,14 @@ A student should be able to:
8181
8282#### Caveats
8383
84- The concept of asyncrhonous programming is no easy digestiable for most students.
84+ The concept of asynchronous programming is no easy digestible for most students.
8585
8686
8787#### Points to cover
8888
8989* The header ` <future> ` needs to be includes
9090* The return type of the function or lambda will the the template type of the future
91- * The first argument of ` std::async ` is the function or lambda and after that all arguments are providesd
91+ * The first argument of ` std::async ` is the function or lambda and after that all arguments are provided
9292
9393Example using a function
9494```
You can’t perform that action at this time.
0 commit comments