Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/proto
diff options
context:
space:
mode:
Diffstat (limited to 'proto')
-rw-r--r--proto/blob.proto4
-rw-r--r--proto/commit.proto10
-rw-r--r--proto/diff.proto4
-rw-r--r--proto/errors.proto4
-rw-r--r--proto/go/gitalypb/blob.pb.go4
-rw-r--r--proto/go/gitalypb/commit.pb.go10
-rw-r--r--proto/go/gitalypb/diff.pb.go2
-rw-r--r--proto/go/gitalypb/diff_grpc.pb.go4
-rw-r--r--proto/go/gitalypb/errors.pb.go4
-rw-r--r--proto/go/gitalypb/remote.pb.go2
-rw-r--r--proto/remote.proto2
11 files changed, 25 insertions, 25 deletions
diff --git a/proto/blob.proto b/proto/blob.proto
index 73a78670b..ddbf1182a 100644
--- a/proto/blob.proto
+++ b/proto/blob.proto
@@ -159,7 +159,7 @@ message ListBlobsRequest {
// dash. Please consult gitrevisions(7) for more info. Must not be empty.
repeated string revisions = 2;
// limit is the maximum number of blobs to return. If set to its default
- // (`0`), then all found blobs wll be returned.
+ // (`0`), then all found blobs will be returned.
uint32 limit = 3;
// bytes_limit is the maximum number of bytes to receive for each blob. If set
// to `0`, then no blob data will be sent. If `-1`, then all blob data will
@@ -202,7 +202,7 @@ message ListAllBlobsRequest {
// repository is the repository in which blobs should be enumerated.
Repository repository = 1 [(target_repository)=true];
// limit is the maximum number of blobs to return. If set to its default
- // (`0`), then all found blobs wll be returned.
+ // (`0`), then all found blobs will be returned.
uint32 limit = 2;
// bytes_limit is the maximum number of bytes to receive for each blob. If set
// to `0`, then no blob data will be sent. If `-1`, then all blob data will
diff --git a/proto/commit.proto b/proto/commit.proto
index 3815ab52e..a19376bbb 100644
--- a/proto/commit.proto
+++ b/proto/commit.proto
@@ -197,7 +197,7 @@ service CommitService {
// ListCommitsRequest is a request for the ListCommits RPC.
message ListCommitsRequest {
- // Order is the order in which commits shoud be traversed.
+ // Order is the order in which commits should be traversed.
enum Order {
// NONE defaults to reverse chronological order.
NONE = 0; // protolint:disable:this ENUM_FIELD_NAMES_PREFIX ENUM_FIELD_NAMES_ZERO_VALUE_END_WITH
@@ -308,7 +308,7 @@ message CommitStatsResponse {
// CommitIsAncestorRequest is the request for the CommitIsAncestor RPC.
message CommitIsAncestorRequest {
- // repository is the repository for which we need to check the ancestory.
+ // repository is the repository for which we need to check the ancestry.
Repository repository = 1 [(target_repository)=true];
// ancestor_id is the object ID of the commit which needs to be checked as ancestor.
string ancestor_id = 2;
@@ -577,7 +577,7 @@ message ListCommitsByRefNameResponse {
// FindAllCommitsRequest is the request for the FindAllCommits RPC.
message FindAllCommitsRequest {
- // Order is the order in which commits shoud be traversed.
+ // Order is the order in which commits should be traversed.
enum Order {
// NONE denotes the default ordering where the commits are shown in
// reverse chronological order.
@@ -616,7 +616,7 @@ message FindAllCommitsResponse {
// FindCommitsRequest is the request for the FindCommits RPC.
message FindCommitsRequest {
- // Order is the order in which commits shoud be traversed.
+ // Order is the order in which commits should be traversed.
enum Order {
// NONE defaults to reverse chronological order.
NONE = 0; // protolint:disable:this ENUM_FIELD_NAMES_PREFIX ENUM_FIELD_NAMES_ZERO_VALUE_END_WITH
@@ -878,7 +878,7 @@ message GetCommitSignaturesRequest {
Repository repository = 1 [(target_repository)=true];
// commit_ids is the list of commitish object IDs for whom we want to retrieve
// signature information. If a commit doesn't have associated signature information
- // it will be ommitted from the results.
+ // it will be omitted from the results.
repeated string commit_ids = 2;
}
diff --git a/proto/diff.proto b/proto/diff.proto
index d140db71c..b2a2ef6e5 100644
--- a/proto/diff.proto
+++ b/proto/diff.proto
@@ -20,7 +20,7 @@ service DiffService {
}
// CommitDelta returns the deltas between two different commits. A delta
- // includes everthing that changed about a set of paths except for the actual
+ // includes everything that changed about a set of paths except for the actual
// diff.
rpc CommitDelta(CommitDeltaRequest) returns (stream CommitDeltaResponse) {
option (op_type) = {
@@ -252,7 +252,7 @@ message RawPatchRequest {
string right_commit_id = 3;
}
-// RawPatchResponse is a reponse for the RawPatch RPC.
+// RawPatchResponse is a response for the RawPatch RPC.
message RawPatchResponse {
// data is a sequence of bytes representing the unmodified diff patch data
// returned from git-format-patch(1).
diff --git a/proto/errors.proto b/proto/errors.proto
index 9ce8a52e5..68f49ba93 100644
--- a/proto/errors.proto
+++ b/proto/errors.proto
@@ -29,7 +29,7 @@ message IndexError {
// ERROR_TYPE_EMPTY_PATH indicates an empty path was provided by the caller.
ERROR_TYPE_EMPTY_PATH = 1;
// ERROR_TYPE_INVALID_PATH indicates a path either contained '.git', or was
- // incorrectly formated, e.g. invalid://file/path.
+ // incorrectly formatted, e.g. invalid://file/path.
ERROR_TYPE_INVALID_PATH = 2;
// ERROR_TYPE_DIRECTORY_EXISTS indicates the directory being created already exists.
ERROR_TYPE_DIRECTORY_EXISTS = 3;
@@ -98,7 +98,7 @@ message ReferenceExistsError {
string oid = 2;
}
-// ReferenceNotFoundError is an error retruned when a reference that ought to exist does not exist.
+// ReferenceNotFoundError is an error returned when a reference that ought to exist does not exist.
message ReferenceNotFoundError {
// reference_name is the name of the reference that does not exist.
bytes reference_name = 1;
diff --git a/proto/go/gitalypb/blob.pb.go b/proto/go/gitalypb/blob.pb.go
index 58ad78679..a1e1f86f4 100644
--- a/proto/go/gitalypb/blob.pb.go
+++ b/proto/go/gitalypb/blob.pb.go
@@ -358,7 +358,7 @@ type ListBlobsRequest struct {
// dash. Please consult gitrevisions(7) for more info. Must not be empty.
Revisions []string `protobuf:"bytes,2,rep,name=revisions,proto3" json:"revisions,omitempty"`
// limit is the maximum number of blobs to return. If set to its default
- // (`0`), then all found blobs wll be returned.
+ // (`0`), then all found blobs will be returned.
Limit uint32 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
// bytes_limit is the maximum number of bytes to receive for each blob. If set
// to `0`, then no blob data will be sent. If `-1`, then all blob data will
@@ -499,7 +499,7 @@ type ListAllBlobsRequest struct {
// repository is the repository in which blobs should be enumerated.
Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
// limit is the maximum number of blobs to return. If set to its default
- // (`0`), then all found blobs wll be returned.
+ // (`0`), then all found blobs will be returned.
Limit uint32 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
// bytes_limit is the maximum number of bytes to receive for each blob. If set
// to `0`, then no blob data will be sent. If `-1`, then all blob data will
diff --git a/proto/go/gitalypb/commit.pb.go b/proto/go/gitalypb/commit.pb.go
index cc3588eaa..f2d70205b 100644
--- a/proto/go/gitalypb/commit.pb.go
+++ b/proto/go/gitalypb/commit.pb.go
@@ -21,7 +21,7 @@ const (
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
-// Order is the order in which commits shoud be traversed.
+// Order is the order in which commits should be traversed.
type ListCommitsRequest_Order int32
const (
@@ -239,7 +239,7 @@ func (GetTreeEntriesRequest_SortBy) EnumDescriptor() ([]byte, []int) {
return file_commit_proto_rawDescGZIP(), []int{15, 0}
}
-// Order is the order in which commits shoud be traversed.
+// Order is the order in which commits should be traversed.
type FindAllCommitsRequest_Order int32
const (
@@ -297,7 +297,7 @@ func (FindAllCommitsRequest_Order) EnumDescriptor() ([]byte, []int) {
return file_commit_proto_rawDescGZIP(), []int{26, 0}
}
-// Order is the order in which commits shoud be traversed.
+// Order is the order in which commits should be traversed.
type FindCommitsRequest_Order int32
const (
@@ -860,7 +860,7 @@ type CommitIsAncestorRequest struct {
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
- // repository is the repository for which we need to check the ancestory.
+ // repository is the repository for which we need to check the ancestry.
Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
// ancestor_id is the object ID of the commit which needs to be checked as ancestor.
AncestorId string `protobuf:"bytes,2,opt,name=ancestor_id,json=ancestorId,proto3" json:"ancestor_id,omitempty"`
@@ -3631,7 +3631,7 @@ type GetCommitSignaturesRequest struct {
Repository *Repository `protobuf:"bytes,1,opt,name=repository,proto3" json:"repository,omitempty"`
// commit_ids is the list of commitish object IDs for whom we want to retrieve
// signature information. If a commit doesn't have associated signature information
- // it will be ommitted from the results.
+ // it will be omitted from the results.
CommitIds []string `protobuf:"bytes,2,rep,name=commit_ids,json=commitIds,proto3" json:"commit_ids,omitempty"`
}
diff --git a/proto/go/gitalypb/diff.pb.go b/proto/go/gitalypb/diff.pb.go
index c34c019eb..4dac6e443 100644
--- a/proto/go/gitalypb/diff.pb.go
+++ b/proto/go/gitalypb/diff.pb.go
@@ -1008,7 +1008,7 @@ func (x *RawPatchRequest) GetRightCommitId() string {
return ""
}
-// RawPatchResponse is a reponse for the RawPatch RPC.
+// RawPatchResponse is a response for the RawPatch RPC.
type RawPatchResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
diff --git a/proto/go/gitalypb/diff_grpc.pb.go b/proto/go/gitalypb/diff_grpc.pb.go
index a16c0e63e..89f3848d2 100644
--- a/proto/go/gitalypb/diff_grpc.pb.go
+++ b/proto/go/gitalypb/diff_grpc.pb.go
@@ -26,7 +26,7 @@ type DiffServiceClient interface {
// chunked across messages and get streamed back to the client.
CommitDiff(ctx context.Context, in *CommitDiffRequest, opts ...grpc.CallOption) (DiffService_CommitDiffClient, error)
// CommitDelta returns the deltas between two different commits. A delta
- // includes everthing that changed about a set of paths except for the actual
+ // includes everything that changed about a set of paths except for the actual
// diff.
CommitDelta(ctx context.Context, in *CommitDeltaRequest, opts ...grpc.CallOption) (DiffService_CommitDeltaClient, error)
// RawDiff returns a diff between two commits. The output is the unmodified
@@ -266,7 +266,7 @@ type DiffServiceServer interface {
// chunked across messages and get streamed back to the client.
CommitDiff(*CommitDiffRequest, DiffService_CommitDiffServer) error
// CommitDelta returns the deltas between two different commits. A delta
- // includes everthing that changed about a set of paths except for the actual
+ // includes everything that changed about a set of paths except for the actual
// diff.
CommitDelta(*CommitDeltaRequest, DiffService_CommitDeltaServer) error
// RawDiff returns a diff between two commits. The output is the unmodified
diff --git a/proto/go/gitalypb/errors.pb.go b/proto/go/gitalypb/errors.pb.go
index da4ccc880..5f0baa793 100644
--- a/proto/go/gitalypb/errors.pb.go
+++ b/proto/go/gitalypb/errors.pb.go
@@ -30,7 +30,7 @@ const (
// ERROR_TYPE_EMPTY_PATH indicates an empty path was provided by the caller.
IndexError_ERROR_TYPE_EMPTY_PATH IndexError_ErrorType = 1
// ERROR_TYPE_INVALID_PATH indicates a path either contained '.git', or was
- // incorrectly formated, e.g. invalid://file/path.
+ // incorrectly formatted, e.g. invalid://file/path.
IndexError_ERROR_TYPE_INVALID_PATH IndexError_ErrorType = 2
// ERROR_TYPE_DIRECTORY_EXISTS indicates the directory being created already exists.
IndexError_ERROR_TYPE_DIRECTORY_EXISTS IndexError_ErrorType = 3
@@ -678,7 +678,7 @@ func (x *ReferenceExistsError) GetOid() string {
return ""
}
-// ReferenceNotFoundError is an error retruned when a reference that ought to exist does not exist.
+// ReferenceNotFoundError is an error returned when a reference that ought to exist does not exist.
type ReferenceNotFoundError struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
diff --git a/proto/go/gitalypb/remote.pb.go b/proto/go/gitalypb/remote.pb.go
index 612b4d5cb..f8999771c 100644
--- a/proto/go/gitalypb/remote.pb.go
+++ b/proto/go/gitalypb/remote.pb.go
@@ -33,7 +33,7 @@ type UpdateRemoteMirrorRequest struct {
// on-disk remote configuration.
Remote *UpdateRemoteMirrorRequest_Remote `protobuf:"bytes,7,opt,name=remote,proto3" json:"remote,omitempty"`
// only_branches_matching contains patterns to match branches against. Only the
- // matched brances are updated in the remote mirror. If no patterns are
+ // matched branches are updated in the remote mirror. If no patterns are
// specified, all branches are updated. The patterns should only contain the
// branch name without the 'refs/heads/' prefix. "*" can be used as a
// wildcard to match anything. only_branches_matching can be streamed to the
diff --git a/proto/remote.proto b/proto/remote.proto
index 110d7f058..055cac046 100644
--- a/proto/remote.proto
+++ b/proto/remote.proto
@@ -73,7 +73,7 @@ message UpdateRemoteMirrorRequest {
// on-disk remote configuration.
Remote remote = 7;
// only_branches_matching contains patterns to match branches against. Only the
- // matched brances are updated in the remote mirror. If no patterns are
+ // matched branches are updated in the remote mirror. If no patterns are
// specified, all branches are updated. The patterns should only contain the
// branch name without the 'refs/heads/' prefix. "*" can be used as a
// wildcard to match anything. only_branches_matching can be streamed to the