From fe8e9715ac391d15a828ad5eb6c1aef7259a9604 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 28 Sep 2022 19:47:51 +0200 Subject: [PATCH] some tweaks --- 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 b17d6a1..0d29d5c 100644 --- a/start/01-tasks.md +++ b/start/01-tasks.md @@ -35,13 +35,13 @@ string every second: "Hello World". ## 2. Changing to the concept of executable objects -The goal of this task is to convert the code from task 1 so the [std::thread] API takes an +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 thread should remain the same. The executable objects should be named `MyExecutableObject`. It contains one function called `periodicOperation` which performs the printout, and a static function which takes the `MyExecutableObject` itself by reference and executes it in a permanent loop. -The executable object should be passed into the [std::thread] directly. +The executable object should be passed into the `std::thread` directly. ### Hints