aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/support/host_port.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/support/host_port.c')
-rw-r--r--src/core/support/host_port.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/support/host_port.c b/src/core/support/host_port.c
index a28f04df9c..23f65b1581 100644
--- a/src/core/support/host_port.c
+++ b/src/core/support/host_port.c
@@ -79,7 +79,7 @@ int gpr_split_host_port(const char *name, char **host, char **port) {
host_len = (size_t)(rbracket - host_start);
if (memchr(host_start, ':', host_len) == NULL) {
/* Require all bracketed hosts to contain a colon, because a hostname or
- IPv4 address should never use brackets. */
+ IPv4 address should never use brackets. */
return 0;
}
} else {