From eb91ef85f2e64c3f055ab299432201f65c8313fc Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 28 Sep 2022 17:33:39 +0200 Subject: [PATCH] typos --- start/01-tasks.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/start/01-tasks.md b/start/01-tasks.md index 33c1ff9..d1a7707 100644 --- a/start/01-tasks.md +++ b/start/01-tasks.md @@ -56,7 +56,7 @@ scheduled consecutively in another thread. The goal of this task is to convert the code from task 1 so the [std::thread] API takes an executable object to move to a more object oriented task approach. -The printout of the threaf should remain the same. +The printout of the thread should remain the same. It is recommended to pass this executable object into the [std::thread] directly. @@ -74,7 +74,7 @@ objects and describes a certain API contract an object has to fulfill. As described before, the framework provides task abstraction with some advantages - Task execution can be deferred until an explicit `start` method is called -- Same uniform API for multiple operating systems +- Same uniform API across multiple operating systems The goal of this task is to implement the task specified in 1 using the abstractions provided in step 1.