aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/lockfree_event.cc
diff options
context:
space:
mode:
authorGravatar Yash Tibrewal <yashkt@google.com>2018-07-18 15:56:42 -0700
committerGravatar Yash Tibrewal <yashkt@google.com>2018-07-18 15:56:42 -0700
commitd44abfbce5084bbc543b6d9ab02d39f3673273d2 (patch)
treeee20f3b76b9c3ff9dfb4f5a5fa885322372957dc /src/core/lib/iomgr/lockfree_event.cc
parent6b2b91cc938b1ce4400ad19106255afbdefd00d7 (diff)
s/inited/initialized
Diffstat (limited to 'src/core/lib/iomgr/lockfree_event.cc')
-rw-r--r--src/core/lib/iomgr/lockfree_event.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/iomgr/lockfree_event.cc b/src/core/lib/iomgr/lockfree_event.cc
index 8f2c24f464..085fea40a4 100644
--- a/src/core/lib/iomgr/lockfree_event.cc
+++ b/src/core/lib/iomgr/lockfree_event.cc
@@ -91,7 +91,7 @@ void LockfreeEvent::NotifyOn(grpc_closure* closure) {
while (true) {
/* This load needs to be an acquire load because this can be a shutdown
* error that we might need to reference. Adding acquire semantics makes
- * sure that the shutdown error has been inited properly before us
+ * sure that the shutdown error has been initialized properly before us
* referencing it. */
gpr_atm curr = gpr_atm_acq_load(&state_);
if (grpc_polling_trace.enabled()) {