From 844872fb717d793df50d647237d0fdc6f79e87bb Mon Sep 17 00:00:00 2001 From: Nils Sauer Date: Thu, 6 Apr 2023 09:26:55 +0200 Subject: [PATCH] Fixed typo --- AsyncManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AsyncManager.cpp b/AsyncManager.cpp index 26de72f..0b7e269 100644 --- a/AsyncManager.cpp +++ b/AsyncManager.cpp @@ -25,7 +25,7 @@ void AsyncManager::cleanFutureMap(SockFutureMap& map) { void AsyncManager::run() { while (!stopping && runtime.cooperate()) { - // We should stop once there is nothihng left to do + // We should stop once there is nothing left to do if (sockReads.empty() && sockWrites.empty()) [[unlikely]] { break; }