diff --git a/src/core/support/env_linux.c b/src/core/support/env_linux.c
index 7bfd8415f8c91716282f5aae196d1d559e834165..3477dd2983085a1e1e322938e83e010038be5734 100644
--- a/src/core/support/env_linux.c
+++ b/src/core/support/env_linux.c
@@ -61,7 +61,7 @@ char *__attribute__((weak)) __secure_getenv(const char *name);
 char *gpr_getenv(const char *name) {
   static char *(*getenv_func)(const char *) = secure_getenv;
   /* Check to see which getenv variant is supported (go from most
-   * to least secure */
+   * to least secure) */
   if (getenv_func == NULL) {
     getenv_func = __secure_getenv;
     if (getenv_func == NULL) {