From 583d22efb5901296d1e3dcbc091be5dee9d8a14f Mon Sep 17 00:00:00 2001 From: B Stack Date: Fri, 14 Jun 2019 22:33:49 -0400 Subject: 10.13 --- zen/thread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'zen/thread.h') 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 auto runAsync(Function&& fun); -- cgit