diff options
author | 2018-07-18 09:40:18 -0700 | |
---|---|---|
committer | 2018-07-18 09:40:18 -0700 | |
commit | 3c2b0ab6fd59755892bc871413a305daf2833e16 (patch) | |
tree | b9916bcddc0b566df84d9e5a1c28a7c01bf0156f /src | |
parent | 891cf34004e19f0071964b964f65eb3d156575ac (diff) |
s/this/with
Diffstat (limited to 'src')
-rw-r--r-- | src/core/lib/channel/channelz_registry.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/channel/channelz_registry.cc b/src/core/lib/channel/channelz_registry.cc index 738a56d7c6..a16798d524 100644 --- a/src/core/lib/channel/channelz_registry.cc +++ b/src/core/lib/channel/channelz_registry.cc @@ -86,7 +86,7 @@ char* ChannelzRegistry::InternalGetTopChannels(intptr_t start_channel_id) { grpc_json* json_iterator = nullptr; InlinedVector<ChannelNode*, 10> top_level_channels; // uuids index into entities one-off (idx 0 is really uuid 1, since 0 is - // reserved). However, we want to support requests coming in this + // reserved). However, we want to support requests coming in with // start_channel_id=0, which signifies "give me everything." Hence this // funky looking line below. size_t start_idx = start_channel_id == 0 ? 0 : start_channel_id - 1; |