From 3fa4fa614870a1943e7251c96350cc6521b90bec Mon Sep 17 00:00:00 2001 From: Peter Conrad Date: Wed, 19 Jun 2019 17:31:54 +0200 Subject: [PATCH] Fixed typo --- include/fc/thread/task.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fc/thread/task.hpp b/include/fc/thread/task.hpp index ed8c208..9ddf4b3 100644 --- a/include/fc/thread/task.hpp +++ b/include/fc/thread/task.hpp @@ -36,7 +36,7 @@ namespace fc { /* HERE BE DRAGONS * - * Tasks are handled by an fc::thread . To avoid concurrency issues, fc::thread keeps a reference to tha + * Tasks are handled by an fc::thread . To avoid concurrency issues, fc::thread keeps a reference to the * task in the form of a simple pointer. * At the same time, a task is also a promise that will be fulfilled with the task result, so typically the * creator of the task also keeps a reference to the task (but not necessarily always).