summaryrefslogtreecommitdiff
path: root/zen/thread.h
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-06-14 22:33:49 -0400
committerB Stack <bgstack15@gmail.com>2019-06-14 22:33:49 -0400
commit583d22efb5901296d1e3dcbc091be5dee9d8a14f (patch)
treecc720d69d3ca68b64ed0aa79438177b6953469a1 /zen/thread.h
parentMerge branch '10.12' into 'master' (diff)
downloadFreeFileSync-583d22efb5901296d1e3dcbc091be5dee9d8a14f.tar.gz
FreeFileSync-583d22efb5901296d1e3dcbc091be5dee9d8a14f.tar.bz2
FreeFileSync-583d22efb5901296d1e3dcbc091be5dee9d8a14f.zip
10.13
Diffstat (limited to 'zen/thread.h')
-rw-r--r--zen/thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/thread.h b/zen/thread.h
index 52b85d7f..791aec67 100644
--- a/zen/thread.h
+++ b/zen/thread.h
@@ -75,7 +75,7 @@ Example:
Zstring dirPath = ...
auto ft = zen::runAsync([=]{ return zen::dirExists(dirPath); });
if (ft.wait_for(std::chrono::milliseconds(200)) == std::future_status::ready && ft.get())
- //dir exising
+ //dir existing
*/
template <class Function>
auto runAsync(Function&& fun);
bgstack15