Skip to content

Commit 8548a93

Browse files
committed
Update .cc and .md files
1 parent 1064c6f commit 8548a93

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/core/ext/filters/max_age/max_age_filter.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ struct channel_data {
106106
+--------------------------------+----------------+---------+
107107
108108
MAX_IDLE_STATE_INIT: The initial and final state of 'idle_state'. The
109-
channel has 1 or 1+ active calls, and the the timer is not set. Note that
109+
channel has 1 or 1+ active calls, and the timer is not set. Note that
110110
we may put a virtual call to hold this state at channel initialization or
111111
shutdown, so that the channel won't enter other states.
112112

summerofcode/2018/naresh.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ bazel test --spawn_strategy=standalone --genrule_strategy=standalone //src/pytho
128128

129129
- Use `bazel build` with a `-s` flag to see the logs being printed out to
130130
standard output while building.
131-
- Similarly, use `bazel test` with a `--test_output=streamed` to see the the
131+
- Similarly, use `bazel test` with a `--test_output=streamed` to see the
132132
test logs while testing. Something to know while using this flag is that all
133133
tests will be run locally, without sharding, one at a time.
134134

test/cpp/end2end/channelz_service_test.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,7 @@ TEST_F(ChannelzServerTest, GetServerSocketsPaginationTest) {
708708
get_server_sockets_request,
709709
&get_server_sockets_response);
710710
EXPECT_TRUE(s.ok()) << "s.error_message() = " << s.error_message();
711-
// We add one to account the the channelz stub that will end up creating
711+
// We add one to account the channelz stub that will end up creating
712712
// a serversocket.
713713
EXPECT_EQ(get_server_sockets_response.socket_ref_size(),
714714
kNumServerSocketsCreated + 1);

test/cpp/util/channel_trace_proto_helper.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ void VaidateProtoJsonTranslation(char* json_c_str) {
5656
EXPECT_EQ(google::protobuf::util::MessageToJsonString(msg, &proto_json_str,
5757
print_options),
5858
google::protobuf::util::Status::OK);
59-
// uncomment these to compare the the json strings.
59+
// uncomment these to compare the json strings.
6060
// gpr_log(GPR_ERROR, "tracer json: %s", json_str.c_str());
6161
// gpr_log(GPR_ERROR, "proto json: %s", proto_json_str.c_str());
6262
EXPECT_EQ(json_str, proto_json_str);

0 commit comments

Comments
 (0)