aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/support/abstract.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/lib/support/abstract.h')
-rw-r--r--src/core/lib/support/abstract.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/support/abstract.h b/src/core/lib/support/abstract.h
index ddf472bc37..5498769a7d 100644
--- a/src/core/lib/support/abstract.h
+++ b/src/core/lib/support/abstract.h
@@ -21,7 +21,7 @@
// This is needed to support abstract base classes in the c core. Since gRPC
// doesn't have a c++ runtime, it will hit a linker error on delete unless
-// a we define a virtual operator delete. See this blog for more info:
+// we define a virtual operator delete. See this blog for more info:
// https://eli.thegreenplace.net/2015/c-deleting-destructors-and-virtual-operator-delete/
#define GRPC_ABSTRACT_BASE_CLASS \
static void operator delete(void* p) { abort(); }