diff --git a/src/core/iomgr/unix_sockets_posix_noop.c b/src/core/iomgr/unix_sockets_posix_noop.c
index 5e797dbdc45c0f8dd8c0d18f0c648f189c63097b..d899b46093ed60c3b58c1bca8aef0b82fe2f8923 100644
--- a/src/core/iomgr/unix_sockets_posix_noop.c
+++ b/src/core/iomgr/unix_sockets_posix_noop.c
@@ -36,7 +36,9 @@
 #ifndef GPR_HAVE_UNIX_SOCKET
 
 void grpc_create_socketpair_if_unix(int sv[2]) {
-  // TODO(ahedberg): Please fill in an implementation for non-Unix-sockets case
+  // TODO: Either implement this for the non-Unix socket case or make
+  // sure that it is never called in any such case. Until then, leave an
+  // assertion to notify if this gets called inadvertently
   GPR_ASSERT(0);
 }