Skip to content

Commit 5ec7833

Browse files
committed
Typos
1 parent 6b27d21 commit 5ec7833

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sources/modules/concurrency-parallelism/async-programming.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

9393
Example using a function
9494
```

0 commit comments

Comments
 (0)