aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
diff options
context:
space:
mode:
authorGravatar Sree Kuchibhotla <sreek@google.com>2018-08-10 14:58:08 -0700
committerGravatar Sree Kuchibhotla <sreek@google.com>2018-08-10 14:58:08 -0700
commitf023814bff78e4af440e66923276899c948c1d44 (patch)
treebb068db300ede29c2322bd9d4bad2f4b9a1ff57e /src/core
parentd760b26586b7c0621d39803df90af3ee2d3d5698 (diff)
minor comments format fix
Diffstat (limited to 'src/core')
-rw-r--r--src/core/ext/transport/chttp2/transport/chttp2_transport.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/ext/transport/chttp2/transport/chttp2_transport.cc b/src/core/ext/transport/chttp2/transport/chttp2_transport.cc
index d8829ca0cd..493d679b74 100644
--- a/src/core/ext/transport/chttp2/transport/chttp2_transport.cc
+++ b/src/core/ext/transport/chttp2/transport/chttp2_transport.cc
@@ -813,11 +813,11 @@ static void set_write_state(grpc_chttp2_transport* t,
write_state_name(st), reason));
t->write_state = st;
/* If the state is being reset back to idle, it means a write was just
- finished. Make sure all the run_after_write closures are scheduled.
-
- This is also our chance to close the transport if the transport was marked
- to be closed after all writes finish (for example, if we received a go-away
- from peer while we had some pending writes) */
+ * finished. Make sure all the run_after_write closures are scheduled.
+ *
+ * This is also our chance to close the transport if the transport was marked
+ * to be closed after all writes finish (for example, if we received a go-away
+ * from peer while we had some pending writes) */
if (st == GRPC_CHTTP2_WRITE_STATE_IDLE) {
grpc_chttp2_stream* s;
while (grpc_chttp2_list_pop_waiting_for_write_stream(t, &s)) {