Skip to content

Commit e4515f0

Browse files
authored
Fix typos (#365)
1 parent de5501d commit e4515f0

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

build/bazel/remote/execution/v2/remote_execution.proto

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ service Execution {
126126
// server MAY choose to stream additional updates as execution progresses,
127127
// such as to provide an update as to the state of the execution.
128128
//
129-
// In addition to the cases describe for Execute, the WaitExecution method
129+
// In addition to the cases described for Execute, the WaitExecution method
130130
// may fail as follows:
131131
//
132132
// * `NOT_FOUND`: The operation no longer exists due to any of a transient
@@ -216,15 +216,15 @@ service ActionCache {
216216
// For large uploads, the client must use the
217217
// [Write method][google.bytestream.ByteStream.Write] of the ByteStream API.
218218
//
219-
// For uncompressed data, The `WriteRequest.resource_name` is of the following form:
219+
// For uncompressed data, the `WriteRequest.resource_name` is of the following form:
220220
// `{instance_name}/uploads/{uuid}/blobs/{digest_function/}{hash}/{size}{/optional_metadata}`
221221
//
222222
// Where:
223223
// * `instance_name` is an identifier used to distinguish between the various
224224
// instances on the server. Syntax and semantics of this field are defined
225225
// by the server; Clients must not make any assumptions about it (e.g.,
226226
// whether it spans multiple path segments or not). If it is the empty path,
227-
// the leading slash is omitted, so that the `resource_name` becomes
227+
// the leading slash is omitted, so that the `resource_name` becomes
228228
// `uploads/{uuid}/blobs/{digest_function/}{hash}/{size}{/optional_metadata}`.
229229
// To simplify parsing, a path segment cannot equal any of the following
230230
// keywords: `blobs`, `uploads`, `actions`, `actionResults`, `operations`,
@@ -252,7 +252,7 @@ service ActionCache {
252252
// defined as above.
253253
// * `compressor` is a lowercase string form of a `Compressor.Value` enum
254254
// other than `identity`, which is supported by the server and advertised in
255-
// [CacheCapabilities.supported_compressor][build.bazel.remote.execution.v2.CacheCapabilities.supported_compressor].
255+
// [CacheCapabilities.supported_compressors][build.bazel.remote.execution.v2.CacheCapabilities.supported_compressors].
256256
// * `uncompressed_hash` and `uncompressed_size` refer to the
257257
// [Digest][build.bazel.remote.execution.v2.Digest] of the data being
258258
// uploaded, once uncompressed. Servers MUST verify that these match
@@ -291,7 +291,7 @@ service ActionCache {
291291
// For large downloads, the client must use the
292292
// [Read method][google.bytestream.ByteStream.Read] of the ByteStream API.
293293
//
294-
// For uncompressed data, The `ReadRequest.resource_name` is of the following form:
294+
// For uncompressed data, the `ReadRequest.resource_name` is of the following form:
295295
// `{instance_name}/blobs/{digest_function/}{hash}/{size}`
296296
// Where `instance_name`, `digest_function`, `hash` and `size` are defined as
297297
// for uploads.
@@ -540,7 +540,7 @@ service ContentAddressableStorage {
540540
//
541541
// When blob splitting and splicing is used at the same time, the clients and
542542
// the server SHOULD agree out-of-band upon a chunking algorithm used by both
543-
// parties to benefit from each others chunk data and avoid unnecessary data
543+
// parties to benefit from each other's chunk data and avoid unnecessary data
544544
// duplication.
545545
//
546546
// Errors:
@@ -912,7 +912,7 @@ message Platform {
912912
// well as possibly some metadata about the file or directory.
913913
//
914914
// In order to ensure that two equivalent directory trees hash to the same
915-
// value, the following restrictions MUST be obeyed when constructing a
915+
// value, the following restrictions MUST be obeyed when constructing
916916
// a `Directory`:
917917
//
918918
// * Every child in the directory must have a path of exactly one segment.
@@ -1157,7 +1157,7 @@ message ExecutedActionMetadata {
11571157
//
11581158
// The method of timekeeping used to compute the virtual execution duration
11591159
// MUST be consistent with what is used to enforce the
1160-
// [Action][[build.bazel.remote.execution.v2.Action]'s `timeout`. There is no
1160+
// [Action][build.bazel.remote.execution.v2.Action]'s `timeout`. There is no
11611161
// relationship between the virtual execution duration and the values of
11621162
// `execution_start_timestamp` and `execution_completed_timestamp`.
11631163
google.protobuf.Duration virtual_execution_duration = 12;
@@ -1415,7 +1415,7 @@ message OutputDirectory {
14151415
Digest tree_digest = 3;
14161416

14171417
// If set, consumers MAY make the following assumptions about the
1418-
// directories contained in the the Tree, so that it may be
1418+
// directories contained in the Tree, so that it may be
14191419
// instantiated on a local file system by scanning through it
14201420
// sequentially:
14211421
//
@@ -1453,7 +1453,7 @@ message OutputDirectory {
14531453

14541454
// The digest of the encoded
14551455
// [Directory][build.bazel.remote.execution.v2.Directory] proto
1456-
// containing the contents the directory's root.
1456+
// containing the contents of the directory's root.
14571457
//
14581458
// If both `tree_digest` and `root_directory_digest` are set, this
14591459
// field MUST match the digest of the root directory contained in the
@@ -1820,7 +1820,7 @@ message BatchUpdateBlobsRequest {
18201820

18211821
// The format of `data`. Must be `IDENTITY`/unspecified, or one of the
18221822
// compressors advertised by the
1823-
// [CacheCapabilities.supported_batch_compressors][build.bazel.remote.execution.v2.CacheCapabilities.supported_batch_compressors]
1823+
// [CacheCapabilities.supported_batch_update_compressors][build.bazel.remote.execution.v2.CacheCapabilities.supported_batch_update_compressors]
18241824
// field.
18251825
Compressor.Value compressor = 3;
18261826
}
@@ -2223,8 +2223,8 @@ message ActionCacheUpdateCapabilities {
22232223
}
22242224

22252225
// Allowed values for priority in
2226-
// [ResultsCachePolicy][build.bazel.remoteexecution.v2.ResultsCachePolicy] and
2227-
// [ExecutionPolicy][build.bazel.remoteexecution.v2.ExecutionPolicy]
2226+
// [ResultsCachePolicy][build.bazel.remote.execution.v2.ResultsCachePolicy] and
2227+
// [ExecutionPolicy][build.bazel.remote.execution.v2.ExecutionPolicy]
22282228
// Used for querying both cache and execution valid priority ranges.
22292229
message PriorityCapabilities {
22302230
// Supported range of priorities, including boundaries.

0 commit comments

Comments
 (0)