From 3485bf4af230ab2dd910bdc2870b081cf552e5df Mon Sep 17 00:00:00 2001 From: Guantao Liu Date: Thu, 5 Dec 2019 10:05:27 -0800 Subject: [PATCH] Fix a typo. --- src/core/lib/iomgr/poller/eventmanager_libuv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/lib/iomgr/poller/eventmanager_libuv.h b/src/core/lib/iomgr/poller/eventmanager_libuv.h index be6704d218e..3c0e05d394e 100644 --- a/src/core/lib/iomgr/poller/eventmanager_libuv.h +++ b/src/core/lib/iomgr/poller/eventmanager_libuv.h @@ -78,7 +78,7 @@ class LibuvEventManager { // Worker threads of the EventManager. std::vector workers_; // Mutex and condition variable used for shutdown. - grpc_core::Mutex shutddown_mu_; + grpc_core::Mutex shutdown_mu_; grpc_core::CondVar shutdown_cv_; };