@@ -10,7 +10,7 @@ option go_package = "golang.org/x/build/internal/gomote/protos";
10
10
11
11
// GomoteService can manage the lifecycle of gomote instances and interact with them.
12
12
service GomoteService {
13
- // Authenticate provides authentication information without any additonal action.
13
+ // Authenticate provides authentication information without any additional action.
14
14
rpc Authenticate (AuthenticateRequest ) returns (AuthenticateResponse ) {}
15
15
// CreateInstance creates a gomote instance.
16
16
rpc CreateInstance (CreateInstanceRequest ) returns (stream CreateInstanceResponse ) {}
@@ -24,15 +24,15 @@ service GomoteService {
24
24
rpc ListDirectory (ListDirectoryRequest ) returns (ListDirectoryResponse ) {}
25
25
// ListInstances lists all of the live gomote instances owned by the caller.
26
26
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.
28
28
rpc ReadTGZ (ReadTGZRequest ) returns (stream ReadTGZResponse ) {}
29
29
// RemoveFiles removes files or directories from the gomote instance.
30
30
rpc RemoveFiles (RemoveFilesRequest ) returns (RemoveFilesResponse ) {}
31
31
// RetrieveSSHCredentials retrieves the SSH credentials for the specified gomote instance.
32
32
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.
34
34
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.
36
36
rpc WriteTGZFromURL (WriteTGZFromURLRequest ) returns (WriteTGZFromURLResponse ) {}
37
37
}
38
38
@@ -87,7 +87,7 @@ message Instance {
87
87
// Host type for the gomote instance.
88
88
string host_type = 3 ;
89
89
// 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.
91
91
int64 expires = 4 ;
92
92
}
93
93
@@ -160,8 +160,8 @@ message WriteTGZRequest {}
160
160
// WriteTGZResponse contains the results from expanding a tar and zipped file onto the file system of a gomote instance.
161
161
message WriteTGZResponse {}
162
162
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.
165
165
// If the directory is empty, they're placed at the root of the buildlet's work directory.
166
166
// The directory is created if necessary.
167
167
// The url must be of a tar.gz file.
0 commit comments