Skip to content

Commit b4c9d73

Browse files
committed
internal/gomote/protos: fix spelling errors
This change fixes some spelling and grammatical errors. Updates golang/go#48742 Change-Id: I9e6da866bc077ca59e0ff1dba42a4eea637b3c13 Reviewed-on: https://go-review.googlesource.com/c/build/+/393094 Trust: Carlos Amedee <[email protected]> Run-TryBot: Carlos Amedee <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Alex Rakoczy <[email protected]>
1 parent aa7fa4b commit b4c9d73

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

internal/gomote/protos/gomote.pb.go

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/gomote/protos/gomote.proto

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ option go_package = "golang.org/x/build/internal/gomote/protos";
1010

1111
// GomoteService can manage the lifecycle of gomote instances and interact with them.
1212
service GomoteService {
13-
// Authenticate provides authentication information without any additonal action.
13+
// Authenticate provides authentication information without any additional action.
1414
rpc Authenticate (AuthenticateRequest) returns (AuthenticateResponse) {}
1515
// CreateInstance creates a gomote instance.
1616
rpc CreateInstance (CreateInstanceRequest) returns (stream CreateInstanceResponse) {}
@@ -24,15 +24,15 @@ service GomoteService {
2424
rpc ListDirectory (ListDirectoryRequest) returns (ListDirectoryResponse) {}
2525
// ListInstances lists all of the live gomote instances owned by the caller.
2626
rpc ListInstances (ListInstancesRequest) returns (ListInstancesResponse) {}
27-
// ReadTGZ tars and zips a dicrectory which exists on the gomote instance.
27+
// ReadTGZ tars and zips a directory which exists on the gomote instance.
2828
rpc ReadTGZ (ReadTGZRequest) returns (stream ReadTGZResponse) {}
2929
// RemoveFiles removes files or directories from the gomote instance.
3030
rpc RemoveFiles (RemoveFilesRequest) returns (RemoveFilesResponse) {}
3131
// RetrieveSSHCredentials retrieves the SSH credentials for the specified gomote instance.
3232
rpc RetrieveSSHCredentials (RetrieveSSHCredentialsRequest) returns (RetrieveSSHCredentialsResponse) {}
33-
// WriteTGZ expands a tar and ziped file onto the file system of a gomote instance.
33+
// WriteTGZ expands a tar and zipped file onto the file system of a gomote instance.
3434
rpc WriteTGZ (stream WriteTGZRequest) returns (WriteTGZResponse) {}
35-
// WriteTGZFromURL retrieves a tar and ziped file from a URL and expands it onto the file system of a gomote instance.
35+
// WriteTGZFromURL retrieves a tar and zipped file from a URL and expands it onto the file system of a gomote instance.
3636
rpc WriteTGZFromURL (WriteTGZFromURLRequest) returns (WriteTGZFromURLResponse) {}
3737
}
3838

@@ -87,7 +87,7 @@ message Instance {
8787
// Host type for the gomote instance.
8888
string host_type = 3;
8989
// The timestamp for when the builder instance will expire. It is
90-
// reprsented in Unix epoch time format.
90+
// represented in Unix epoch time format.
9191
int64 expires = 4;
9292
}
9393

@@ -160,8 +160,8 @@ message WriteTGZRequest {}
160160
// WriteTGZResponse contains the results from expanding a tar and zipped file onto the file system of a gomote instance.
161161
message WriteTGZResponse {}
162162

163-
// WriteTGZFromURLRequest specifies the data needed retrieve a file and expand it onto the file system of a gomote instance.
164-
// It instructs the buildlet to download the tar.gz file from the url and write it to directory, a relative directory from the workdir.
163+
// WriteTGZFromURLRequest specifies the data needed to retrieve a file and expand it onto the file system of a gomote instance.
164+
// It instructs the buildlet to download the tar.gz file from the url and write it to a directory, a relative directory from the workdir.
165165
// If the directory is empty, they're placed at the root of the buildlet's work directory.
166166
// The directory is created if necessary.
167167
// The url must be of a tar.gz file.

internal/gomote/protos/gomote_grpc.pb.go

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)