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
diff options
context:
space:
mode:
authorToon Claes <toon@gitlab.com>2022-04-22 12:03:08 +0300
committerToon Claes <toon@gitlab.com>2022-04-22 12:03:08 +0300
commit10d5f9bbf09a1405185519e34756925e8cbcc19f (patch)
treed1d252aa1717619caf757b5cd11cc368fe272701
parent0873a674af4af0c0b3c19e1ab73242339f5d478a (diff)
parent02411157ff156a10480c8670b35d416c4c0eabd6 (diff)
Merge branch 'fix-typo-proto-file' into 'master'
Fix typo in documentation of UserCommitFilesRequestHeader See merge request gitlab-org/gitaly!4422
-rw-r--r--proto/go/gitalypb/operations.pb.go2
-rw-r--r--proto/operations.proto2
2 files changed, 2 insertions, 2 deletions
diff --git a/proto/go/gitalypb/operations.pb.go b/proto/go/gitalypb/operations.pb.go
index 295efc276..5914d5aaf 100644
--- a/proto/go/gitalypb/operations.pb.go
+++ b/proto/go/gitalypb/operations.pb.go
@@ -2326,7 +2326,7 @@ type isUserCommitFilesRequest_UserCommitFilesRequestPayload interface {
}
type UserCommitFilesRequest_Header struct {
- // header defines the details of where to comnit, the details and which commit to use as the parent.
+ // header defines the details of where to commit, the details and which commit to use as the parent.
// header must always be sent as the first request of the stream.
Header *UserCommitFilesRequestHeader `protobuf:"bytes,1,opt,name=header,proto3,oneof"`
}
diff --git a/proto/operations.proto b/proto/operations.proto
index bba44db15..7f0b95251 100644
--- a/proto/operations.proto
+++ b/proto/operations.proto
@@ -542,7 +542,7 @@ message UserCommitFilesRequestHeader {
// UserCommitFiles is the request of UserCommitFiles.
message UserCommitFilesRequest {
oneof user_commit_files_request_payload {
- // header defines the details of where to comnit, the details and which commit to use as the parent.
+ // header defines the details of where to commit, the details and which commit to use as the parent.
// header must always be sent as the first request of the stream.
UserCommitFilesRequestHeader header = 1;
// action contains an action to build a commit. There can be multiple actions per stream.