Skip to content

Commit 0fc01a3

Browse files
authored
Merge pull request grpc#18171 from huynq0911/fix_duplicated_word
Fix some typos
2 parents 40241c5 + c9acd83 commit 0fc01a3

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ static bool read_frame_size(const grpc_slice_buffer* sb,
105105
* Creates an alts_grpc_record_protocol object, given key, key size, and flags
106106
* to indicate whether the record_protocol object uses the rekeying AEAD,
107107
* whether the object is for client or server, whether the object is for
108-
* integrity-only or privacy-integrity mode, and whether the object is is used
108+
* integrity-only or privacy-integrity mode, and whether the object is used
109109
* for protect or unprotect.
110110
*/
111111
static tsi_result create_alts_grpc_record_protocol(

src/python/grpcio_tests/tests/unit/_resource_exhausted_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def __init__(self, total_call_count):
4242
self._finish_condition = threading.Condition()
4343
self._start_condition = threading.Condition()
4444

45-
# Wait for all calls be be blocked in their handler
45+
# Wait for all calls be blocked in their handler
4646
def await_calls(self):
4747
with self._start_condition:
4848
while self._pending_calls < self._total_call_count:

test/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ static void seal_unseal_small_buffer(tsi_zero_copy_grpc_protector* sender,
175175
GPR_ASSERT(tsi_zero_copy_grpc_protector_protect(
176176
sender, &var->original_sb, &var->protected_sb) == TSI_OK);
177177
/* Splits protected slice buffer into two: first one is staging_sb, and
178-
* second one is is protected_sb. */
178+
* second one is protected_sb. */
179179
uint32_t staging_sb_size =
180180
gsec_test_bias_random_uint32(
181181
static_cast<uint32_t>(var->protected_sb.length - 1)) +

tools/internal_ci/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Kokoro CI job configurations and testing scripts
22

3-
gRPC uses a continous integration tool called "Kokoro" (a.k.a "internal CI")
3+
gRPC uses a continuous integration tool called "Kokoro" (a.k.a "internal CI")
44
for running majority of its open source tests.
55
This directory contains the external part of kokoro test job configurations
66
(the actual job definitions live in an internal repository) and the shell
7-
scripts that act as entry points to exectute the actual tests.
7+
scripts that act as entry points to execute the actual tests.

tools/interop_matrix/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This directory contains scripts that facilitate building and running gRPC interoperability tests for combinations of language/runtimes (known as matrix).
44

55
The setup builds gRPC docker images for each language/runtime and upload it to Google Container Registry (GCR). These images, encapsulating gRPC stack
6-
from specific releases/tag, are used to test version compatiblity between gRPC release versions.
6+
from specific releases/tag, are used to test version compatibility between gRPC release versions.
77

88
## Step-by-step instructions for adding a GCR image for a new release for compatibility test
99
We have continuous nightly test setup to test gRPC backward compatibility between old clients and latest server. When a gRPC developer creates a new gRPC release, s/he is also responsible to add the just-released gRPC client to the nightly test. The steps are:

0 commit comments

Comments
 (0)