Skip to content

Commit ccd250a

Browse files
NathanBaulchcopybara-github
authored andcommitted
Fix minor typos (grpc#37450)
Just thought I'd contribute some typo fixes I stumbled upon. Nothing controversial (hopefully), just 74 simple fixes. Use the following command to get a quick and dirty summary of the specific corrections made: ```shell git diff HEAD^! --word-diff-regex='\w+' -U0 \ | grep -E '\[\-.*\-\]\{\+.*\+\}' \ | sed -r 's/.*\[\-(.*)\-\]\{\+(.*)\+\}.*/\1 \2/' \ | sort | uniq -c | sort -n ``` FWIW, the top typos are: * satisifed (8) * uncommited (7) * tranparent (7) * expecially (3) * recieves (3) * correponding (2) * slighly (2) * wierdly (2) Closes grpc#37450 PiperOrigin-RevId: 665459663
1 parent 62da672 commit ccd250a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+83
-83
lines changed

bazel/grpc_build_system.bzl

+3-3
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def grpc_cc_library(
170170
srcs: The source files.
171171
public_hdrs: The public headers.
172172
hdrs: The headers.
173-
external_deps: External depdendencies to be resolved.
173+
external_deps: External dependencies to be resolved.
174174
defines: Build defines to use.
175175
deps: cc_library deps.
176176
select_deps: deps included conditionally.
@@ -529,7 +529,7 @@ def grpc_cc_test(name, srcs = [], deps = [], external_deps = [], args = [], data
529529
timeout: The test timeout.
530530
tags: The tags for the test.
531531
exec_compatible_with: A list of constraint values that must be
532-
satisifed for the platform.
532+
satisfied for the platform.
533533
exec_properties: A dictionary of strings that will be added to the
534534
exec_properties of a platform selected for this target.
535535
shard_count: The number of shards for this test.
@@ -660,7 +660,7 @@ def grpc_sh_test(name, srcs = [], args = [], data = [], uses_polling = True, siz
660660
timeout: The test timeout.
661661
tags: The tags for the test.
662662
exec_compatible_with: A list of constraint values that must be
663-
satisifed for the platform.
663+
satisfied for the platform.
664664
exec_properties: A dictionary of strings that will be added to the
665665
exec_properties of a platform selected for this target.
666666
shard_count: The number of shards for this test.

bazel/protobuf.bzl

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ def well_known_proto_libs():
3737
return ["@com_google_protobuf//:" + b for b in _WELL_KNOWN_PROTOS_BASE]
3838

3939
def is_well_known(label):
40-
# Bazel surfaces labels as their undelying identity, even if they are referenced
40+
# Bazel surfaces labels as their underlying identity, even if they are referenced
4141
# via aliases. Bazel also does not currently provide a way to find the real label
4242
# underlying an alias. So the implementation detail that the WKTs present at the
4343
# top level of the protobuf repo are actually backed by targets in the
4444
# //src/google/protobuf package leaks through here.
4545
# We include both the alias path and the underlying path to be resilient to
46-
# reversions of this change as well as for continuing compatiblity with repos
46+
# reversions of this change as well as for continuing compatibility with repos
4747
# that happen to pull in older versions of protobuf.
4848
all_wkt_targets = (["@com_google_protobuf//:" + b for b in _WELL_KNOWN_PROTOS_BASE] +
4949
["@com_google_protobuf//src/google/protobuf:" + b for b in _WELL_KNOWN_PROTOS_BASE])

doc/environment_variables.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ some configuration as environment variables that can be set.
6060
- NONE - won't log any.
6161
GRPC_VERBOSITY will set verbosity of absl logging.
6262
- If the external application sets some other verbosity, then whatever is set later will be honoured.
63-
- If nothing is set as GRPC_VERBOSITY, then the setting of the exernal application will be honoured.
63+
- If nothing is set as GRPC_VERBOSITY, then the setting of the external application will be honoured.
6464
- If nothing is set by the external application also, the default set by absl will be honoured.
6565
<!-- END_OPEN_SOURCE_DOCUMENTATION -->
6666

doc/grpc_xds_bootstrap_format.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ gRPC expects the xDS bootstrap configuration to be specified as a JSON string.
88
The xDS bootstrap file location may be specified using the environment variable
99
`GRPC_XDS_BOOTSTRAP`. Alternatively, the bootstrap file contents may be
1010
specified using the environment variable `GRPC_XDS_BOOTSTRAP_CONFIG`. If both
11-
are specified, the former takes precendence.
11+
are specified, the former takes precedence.
1212

1313
The xDS client inside of gRPC parses the bootstrap configuration specified by
1414
one of the above means when it is created to configure itself.

doc/service_config.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ name, will return both the resolved addresses and the service config.
4848

4949
The name resolver returns the service config to the gRPC client in JSON form.
5050
Individual resolver implementations determine where and in what format the
51-
service config is stored. If the resolver implemention obtains the
51+
service config is stored. If the resolver implementation obtains the
5252
service config in protobuf form, it must convert it to JSON.
5353
Alternatively, a resolver implementation may obtain the service config
5454
already in JSON form, in which case it may return it directly. Or it

doc/xds-test-descriptions.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -640,17 +640,17 @@ There are four sub-tests:
640640
1. `app_timeout_exceeded`
641641
1. Test client configured to send UnaryCall RPCs with a 1s application
642642
timeout, and metadata of `rpc-behavior: sleep-2`.
643-
1. Test driver asserts client recieves ~100% status `DEADLINE_EXCEEDED`.
643+
1. Test driver asserts client receives ~100% status `DEADLINE_EXCEEDED`.
644644
1. `timeout_not_exceeded`
645645
1. Test client configured to send UnaryCall RPCs with the default
646646
application timeout (20 seconds), and no metadata.
647-
1. Test driver asserts client recieves ~100% status `OK`.
647+
1. Test driver asserts client receives ~100% status `OK`.
648648
1. `timeout_exceeded` (executed with the below test case)
649649
1. `timeout_different_route`
650650
1. Test client configured to send UnaryCall RPCs and EmptyCall RPCs with
651651
the default application timeout (20 seconds), and metadata of
652652
`rpc-behavior: sleep-4`.
653-
1. Test driver asserts client recieves ~100% status `OK` for EmptyCall
653+
1. Test driver asserts client receives ~100% status `OK` for EmptyCall
654654
and ~100% status `DEADLINE_EXCEEDED` for UnaryCall.
655655

656656
### api_listener

examples/cpp/xds/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The client takes two command-line arguments -
1010

1111
The server takes three command-line arguments -
1212
* port - Port on which the Hello World service is run. Defaults to 50051.
13-
* mantenance_port - If secure mode is used (see below), the [Admin](https://github.com/grpc/proposal/blob/master/A38-admin-interface-api.md) service is exposed on this port. If secure mode is not used, `maintenance_port` is unused, and the Admin service is just exposed on `port`. Defaults to 50052.
13+
* maintenance_port - If secure mode is used (see below), the [Admin](https://github.com/grpc/proposal/blob/master/A38-admin-interface-api.md) service is exposed on this port. If secure mode is not used, `maintenance_port` is unused, and the Admin service is just exposed on `port`. Defaults to 50052.
1414
* secure - Bool value, defaults to true. When this is set, [XdsServerCredentials](https://github.com/grpc/proposal/blob/master/A29-xds-tls-security.md) will be used with a fallback on `InsecureServerCredentials`. If unset, `InsecureServerCredentials` will be used.
1515

1616
## Running the example

include/grpc/credentials.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ GRPCAPI grpc_call_credentials* grpc_sts_credentials_create(
103103
/** Context that can be used by metadata credentials plugin in order to create
104104
auth related metadata. */
105105
typedef struct {
106-
/** The fully qualifed service url. */
106+
/** The fully qualified service url. */
107107
const char* service_url;
108108

109109
/** The method name of the RPC being called (not fully qualified).

include/grpc/event_engine/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ thresholds. To enable this feature, the memory allocation of read/write buffers
2323
within an EventEngine must be acquired in the form of Slices from
2424
SliceAllocators. This is covered more fully in the gRFC and code.
2525

26-
### Documentating expectations around callback execution
26+
### Documenting expectations around callback execution
2727
Some callbacks may be expensive to run. EventEngines should decide on and
2828
document whether callback execution might block polling operations. This way,
2929
application developers can plan accordingly (e.g., run their expensive callbacks

include/grpc/event_engine/internal/slice_cast.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace internal {
2424
// with `SliceCast`. Both ways need to be declared (i.e. if
2525
// SliceCastable<A,B> exists, you should declare
2626
// SliceCastable<B,A> too).
27-
// The type has no members, it's just the existance of the specialization that
27+
// The type has no members, it's just the existence of the specialization that
2828
// unlocks SliceCast usage for a type pair.
2929
template <typename Result, typename T>
3030
struct SliceCastable;

include/grpc/grpc_crl_provider.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ absl::StatusOr<std::shared_ptr<CrlProvider>> CreateDirectoryReloaderCrlProvider(
8282
} // namespace experimental
8383
} // namespace grpc_core
8484

85-
// TODO(gtcooke94) - Mark with api macro when all wrapped langauges support C++
85+
// TODO(gtcooke94) - Mark with api macro when all wrapped languages support C++
8686
// in core APIs
8787
/**
8888
* EXPERIMENTAL API - Subject to change

include/grpc/impl/channel_arg_names.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@
259259
issued by the tcp_write(). By default, this is set to 4. */
260260
#define GRPC_ARG_TCP_TX_ZEROCOPY_MAX_SIMULT_SENDS \
261261
"grpc.experimental.tcp_tx_zerocopy_max_simultaneous_sends"
262-
/* Overrides the TCP socket recieve buffer size, SO_RCVBUF. */
262+
/* Overrides the TCP socket receive buffer size, SO_RCVBUF. */
263263
#define GRPC_ARG_TCP_RECEIVE_BUFFER_SIZE "grpc.tcp_receive_buffer_size"
264264
/* Timeout in milliseconds to use for calls to the grpclb load balancer.
265265
If 0 or unset, the balancer calls will have no deadline. */

include/grpcpp/ext/call_metric_recorder.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ namespace experimental {
3333

3434
/// Records call metrics for the purpose of load balancing.
3535
/// During an RPC, call \a ServerContext::ExperimentalGetCallMetricRecorder()
36-
/// method to retrive the recorder for the current call.
36+
/// method to retrieve the recorder for the current call.
3737
class CallMetricRecorder {
3838
public:
3939
virtual ~CallMetricRecorder() = default;

include/grpcpp/security/credentials.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ class MetadataCredentialsPlugin {
247247
/// Type of credentials this plugin is implementing.
248248
virtual const char* GetType() const { return ""; }
249249

250-
/// Gets the auth metatada produced by this plugin.
250+
/// Gets the auth metadata produced by this plugin.
251251
/// The fully qualified method name is:
252252
/// service_url + "/" + method_name.
253253
/// The channel_auth_context contains (among other things), the identity of
@@ -295,7 +295,7 @@ grpc::Status StsCredentialsOptionsFromJson(const std::string& json_string,
295295

296296
/// Creates STS credentials options from the $STS_CREDENTIALS environment
297297
/// variable. This environment variable points to the path of a JSON file
298-
/// comforming to the schema described above.
298+
/// conforming to the schema described above.
299299
grpc::Status StsCredentialsOptionsFromEnv(StsCredentialsOptions* options);
300300

301301
std::shared_ptr<CallCredentials> StsCredentials(

include/grpcpp/server_builder.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ class ServerBuilder {
297297

298298
// Creates a passive listener for Server Endpoint injection.
299299
///
300-
/// \a PasiveListener lets applications provide pre-established connections
300+
/// \a PassiveListener lets applications provide pre-established connections
301301
/// to gRPC Servers. The server will behave as if it accepted the connection
302302
/// itself on its own listening addresses.
303303
///

include/grpcpp/support/byte_buffer.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class GrpcByteBufferPeer;
5858
/// A sequence of bytes.
5959
class ByteBuffer final {
6060
public:
61-
/// Constuct an empty buffer.
61+
/// Construct an empty buffer.
6262
ByteBuffer() : buffer_(nullptr) {}
6363

6464
/// Construct buffer from \a slices, of which there are \a nslices.

include/grpcpp/support/config.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ namespace grpc {
3535

3636
// Using grpc::string and grpc::to_string is discouraged in favor of
3737
// std::string and std::to_string. This is only for legacy code using
38-
// them explictly.
38+
// them explicitly.
3939
using std::string; // deprecated // NOLINT(misc-unused-using-decls)
4040
using std::to_string; // deprecated // NOLINT(misc-unused-using-decls)
4141

include/grpcpp/support/interceptor.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ class InterceptorBatchMethods {
133133
/// means that the payload would be available in the serialized form only
134134
/// unless an interceptor replaces the payload with ModifySendMessage.
135135

136-
/// Returns a modifable ByteBuffer holding the serialized form of the message
136+
/// Returns a modifiable ByteBuffer holding the serialized form of the message
137137
/// that is going to be sent. Valid for PRE_SEND_MESSAGE interceptions.
138138
/// A return value of nullptr indicates that this ByteBuffer is not valid.
139139
virtual ByteBuffer* GetSerializedSendMessage() = 0;

templates/tools/doxygen/Doxyfile.base

+2-2
Original file line numberDiff line numberDiff line change
@@ -1407,7 +1407,7 @@ EXT_LINKS_IN_WINDOW = NO
14071407

14081408
FORMULA_FONTSIZE = 10
14091409

1410-
# Use the FORMULA_TRANPARENT tag to determine whether or not the images
1410+
# Use the FORMULA_TRANSPARENT tag to determine whether or not the images
14111411
# generated for formulas are transparent PNGs. Transparent PNGs are not
14121412
# supported properly for IE 6.0, but are supported on all modern browsers.
14131413
#
@@ -1982,7 +1982,7 @@ INCLUDE_FILE_PATTERNS =
19821982
# recursively expanded use the := operator instead of the = operator.
19831983
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
19841984

1985-
PREDEFINED = GRPC_FINAL= GRPC_OVERIDE=
1985+
PREDEFINED = GRPC_FINAL= GRPC_OVERRIDE=
19861986

19871987
# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
19881988
# tag can be used to specify a list of macro names that should be expanded. The

templates/tools/doxygen/Doxyfile.objc.include

+2-2
Original file line numberDiff line numberDiff line change
@@ -1438,7 +1438,7 @@ EXT_LINKS_IN_WINDOW = NO
14381438

14391439
FORMULA_FONTSIZE = 10
14401440

1441-
# Use the FORMULA_TRANPARENT tag to determine whether or not the images
1441+
# Use the FORMULA_TRANSPARENT tag to determine whether or not the images
14421442
# generated for formulas are transparent PNGs. Transparent PNGs are not
14431443
# supported properly for IE 6.0, but are supported on all modern browsers.
14441444
#
@@ -2013,7 +2013,7 @@ INCLUDE_FILE_PATTERNS =
20132013
# recursively expanded use the := operator instead of the = operator.
20142014
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
20152015

2016-
PREDEFINED = GRPC_FINAL= GRPC_OVERIDE=
2016+
PREDEFINED = GRPC_FINAL= GRPC_OVERRIDE=
20172017

20182018
# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
20192019
# tag can be used to specify a list of macro names that should be expanded. The

tools/bazelify_tests/build_defs.bzl

+9-9
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def grpc_run_tests_harness_test(name, args = [], data = [], size = "medium", tim
114114
timeout: The test timeout.
115115
tags: The tags for the test.
116116
exec_compatible_with: A list of constraint values that must be
117-
satisifed for the platform.
117+
satisfied for the platform.
118118
flaky: Whether this test is flaky.
119119
docker_image_version: The docker .current_version file to use for docker containerization.
120120
use_login_shell: If True, the run_tests.py command will run under a login shell.
@@ -163,7 +163,7 @@ def grpc_run_bazel_distribtest_test(name, args = [], data = [], size = "medium",
163163
timeout: The test timeout.
164164
tags: The tags for the test.
165165
exec_compatible_with: A list of constraint values that must be
166-
satisifed for the platform.
166+
satisfied for the platform.
167167
flaky: Whether this test is flaky.
168168
docker_image_version: The docker .current_version file to use for docker containerization.
169169
"""
@@ -193,7 +193,7 @@ def grpc_run_cpp_distribtest_test(name, args = [], data = [], size = "medium", t
193193
timeout: The test timeout.
194194
tags: The tags for the test.
195195
exec_compatible_with: A list of constraint values that must be
196-
satisifed for the platform.
196+
satisfied for the platform.
197197
flaky: Whether this test is flaky.
198198
docker_image_version: The docker .current_version file to use for docker containerization.
199199
"""
@@ -225,7 +225,7 @@ def grpc_run_simple_command_test(name, args = [], data = [], size = "medium", ti
225225
timeout: The test timeout.
226226
tags: The tags for the test.
227227
exec_compatible_with: A list of constraint values that must be
228-
satisifed for the platform.
228+
satisfied for the platform.
229229
flaky: Whether this test is flaky.
230230
docker_image_version: The docker .current_version file to use for docker containerization.
231231
"""
@@ -260,10 +260,10 @@ def grpc_build_artifact_task(name, timeout = None, artifact_deps = [], tags = []
260260
artifact_deps: List of dependencies on artifacts built by another grpc_build_artifact_task.
261261
tags: The tags for the target.
262262
exec_compatible_with: A list of constraint values that must be
263-
satisifed for the platform.
263+
satisfied for the platform.
264264
flaky: Whether this artifact build is flaky.
265265
docker_image_version: The docker .current_version file to use for docker containerization.
266-
build_script: The script that builds the aritfacts.
266+
build_script: The script that builds the artifacts.
267267
"""
268268

269269
out_exitcode_file = str(name + "_exit_code")
@@ -284,7 +284,7 @@ def grpc_build_artifact_task(name, timeout = None, artifact_deps = [], tags = []
284284

285285
cmd = "$(location //tools/bazelify_tests:grpc_build_artifact_task.sh) $(location //tools/bazelify_tests:grpc_repo_archive_with_submodules.tar.gz) $(location " + build_script + ") $(location " + out_exitcode_file + ") $(location " + out_build_log + ") $(location " + out_archive_name + ")"
286286

287-
# for each artifact task we depends on, use the correponding tar.gz as extra src and pass its location as an extra cmdline arg.
287+
# for each artifact task we depends on, use the corresponding tar.gz as extra src and pass its location as an extra cmdline arg.
288288
for dep in artifact_deps:
289289
dep_archive_name = str(dep + ".tar.gz")
290290
cmd = cmd + " $(location " + dep_archive_name + ")"
@@ -324,7 +324,7 @@ def grpc_run_distribtest_test(name, artifact_deps = [], size = "medium", timeout
324324
timeout: The test timeout.
325325
tags: The tags for the test.
326326
exec_compatible_with: A list of constraint values that must be
327-
satisifed for the platform.
327+
satisfied for the platform.
328328
flaky: Whether this test is flaky.
329329
docker_image_version: The docker .current_version file to use for docker containerization.
330330
build_script: The script that runs the test.
@@ -341,7 +341,7 @@ def grpc_run_distribtest_test(name, artifact_deps = [], size = "medium", timeout
341341
"$(location " + build_script + ")",
342342
]
343343

344-
# for each artifact task we depends on, use the correponding tar.gz as extra data item and pass its location as an extra arg.
344+
# for each artifact task we depends on, use the corresponding tar.gz as extra data item and pass its location as an extra arg.
345345
for dep in artifact_deps:
346346
dep_archive_name = str(dep + ".tar.gz")
347347
args.append("$(location " + dep_archive_name + ")")

tools/bazelify_tests/grpc_repo_archive.sh

+6-6
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ then
5050
exit 1
5151
fi
5252

53-
GRPC_UNCOMMITED_PATCH_CHECKSUM_FROM_STABLE_STATUS=$(grep ^STABLE_GRPC_UNCOMMITED_PATCH_CHECKSUM bazel-out/stable-status.txt | cut -d' ' -f2)
53+
GRPC_UNCOMMITTED_PATCH_CHECKSUM_FROM_STABLE_STATUS=$(grep ^STABLE_GRPC_UNCOMMITTED_PATCH_CHECKSUM bazel-out/stable-status.txt | cut -d' ' -f2)
5454
GRPC_GIT_WORKSPACE_DIRTY_FROM_STABLE_STATUS=$(grep ^STABLE_GRPC_GIT_WORKSPACE_DIRTY bazel-out/stable-status.txt | cut -d' ' -f2)
5555

5656
pushd ${ORIGINAL_BAZEL_WORKSPACE_ROOT} >/dev/null
@@ -65,11 +65,11 @@ fi
6565
mkdir -p ${ARCHIVES_DIR}/grpc
6666
git archive --format="${ARCHIVE_FORMAT}" HEAD >"${ARCHIVES_DIR}/grpc/$(git rev-parse HEAD).${ARCHIVE_FORMAT}"
6767

68-
if [ "${GRPC_UNCOMMITED_PATCH_CHECKSUM_FROM_STABLE_STATUS}" != "" ]
68+
if [ "${GRPC_UNCOMMITTED_PATCH_CHECKSUM_FROM_STABLE_STATUS}" != "" ]
6969
then
70-
git diff HEAD >"${ARCHIVES_DIR}/grpc/grpc_uncommited_${GRPC_UNCOMMITED_PATCH_CHECKSUM_FROM_STABLE_STATUS}.patch"
70+
git diff HEAD >"${ARCHIVES_DIR}/grpc/grpc_uncommited_${GRPC_UNCOMMITTED_PATCH_CHECKSUM_FROM_STABLE_STATUS}.patch"
7171
# check that the actual checksum of the patch file is what we expect it to be
72-
echo "${GRPC_UNCOMMITED_PATCH_CHECKSUM_FROM_STABLE_STATUS} ${ARCHIVES_DIR}/grpc/grpc_uncommited_${GRPC_UNCOMMITED_PATCH_CHECKSUM_FROM_STABLE_STATUS}.patch" | sha256sum --quiet --check
72+
echo "${GRPC_UNCOMMITTED_PATCH_CHECKSUM_FROM_STABLE_STATUS} ${ARCHIVES_DIR}/grpc/grpc_uncommited_${GRPC_UNCOMMITTED_PATCH_CHECKSUM_FROM_STABLE_STATUS}.patch" | sha256sum --quiet --check
7373
fi
7474

7575
# produce archive for each submodule
@@ -82,10 +82,10 @@ mkdir grpc
8282
tar -xopf "${ARCHIVES_DIR}/grpc/${GRPC_GIT_COMMIT_FROM_STABLE_STATUS}.${ARCHIVE_FORMAT}" -C grpc
8383

8484
# apply the patch
85-
if [ "${GRPC_UNCOMMITED_PATCH_CHECKSUM_FROM_STABLE_STATUS}" != "" ]
85+
if [ "${GRPC_UNCOMMITTED_PATCH_CHECKSUM_FROM_STABLE_STATUS}" != "" ]
8686
then
8787
pushd grpc >/dev/null
88-
patch --quiet -p1 <"${ARCHIVES_DIR}/grpc/grpc_uncommited_${GRPC_UNCOMMITED_PATCH_CHECKSUM_FROM_STABLE_STATUS}.patch"
88+
patch --quiet -p1 <"${ARCHIVES_DIR}/grpc/grpc_uncommited_${GRPC_UNCOMMITTED_PATCH_CHECKSUM_FROM_STABLE_STATUS}.patch"
8989
popd >/dev/null
9090
fi
9191

0 commit comments

Comments
 (0)