Skip to content

Commit d9b508c

Browse files
committed
Fix various typos in .cc and .md and .py files
1 parent 1064c6f commit d9b508c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/cpp/codegen/codegen_init.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#include <grpcpp/impl/codegen/grpc_library.h>
2121

2222
/// Null-initializes the global gRPC variables for the codegen library. These
23-
/// stay null in the absence of of grpc++ library. In this case, no gRPC
23+
/// stay null in the absence of grpc++ library. In this case, no gRPC
2424
/// features such as the ability to perform calls will be available. Trying to
2525
/// perform them would result in a segmentation fault when trying to deference
2626
/// the following nulled globals. These should be associated with actual

src/ruby/pb/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ code to them.
77
PREREQUISITES
88
-------------
99

10-
The code is is generated using the protoc (> 3.0.0.alpha.1) and the
10+
The code is generated using the protoc (> 3.0.0.alpha.1) and the
1111
grpc_ruby_plugin. These must be installed to regenerate the IDL defined
1212
classes, but that's not necessary just to use them.
1313

test/core/end2end/fixtures/http_proxy_fixture.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ struct grpc_end2end_http_proxy {
7878
//
7979

8080
// proxy_connection structure is only accessed in the closures which are all
81-
// scheduled under the same combiner lock. So there is is no need for a mutex to
81+
// scheduled under the same combiner lock. So there is no need for a mutex to
8282
// protect this structure.
8383
typedef struct proxy_connection {
8484
grpc_end2end_http_proxy* proxy;

test/cpp/util/proto_reflection_descriptor_database.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class ProtoReflectionDescriptorDatabase : public protobuf::DescriptorDatabase {
4444

4545
// The following four methods implement DescriptorDatabase interfaces.
4646
//
47-
// Find a file by file name. Fills in in *output and returns true if found.
47+
// Find a file by file name. Fills in *output and returns true if found.
4848
// Otherwise, returns false, leaving the contents of *output undefined.
4949
bool FindFileByName(const string& filename,
5050
protobuf::FileDescriptorProto* output) override;

tools/run_tests/run_interop_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -759,7 +759,7 @@ def _job_kill_handler(job):
759759
# When the job times out and we decide to kill it,
760760
# we need to wait a before restarting the job
761761
# to prevent "container name already in use" error.
762-
# TODO(jtattermusch): figure out a cleaner way to to this.
762+
# TODO(jtattermusch): figure out a cleaner way to this.
763763
time.sleep(2)
764764

765765

0 commit comments

Comments
 (0)