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/go
diff options
context:
space:
mode:
Diffstat (limited to 'proto/go')
-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
6 files changed, 13 insertions, 13 deletions
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