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:
authorDavid Kim <dkim@gitlab.com>2023-11-24 08:07:22 +0300
committerDavid Kim <dkim@gitlab.com>2023-11-24 08:07:22 +0300
commitb5cd5c1cd065dcd0e600b90c36be312c57c5af70 (patch)
tree5fb22f3602b810ff8002409fa05df02fb6cfb581 /proto
parent26f881b74697af7e2f4c7b02b83e1df07881b81c (diff)
Fix a typo in UserCommitFilesRequestHeader
Diffstat (limited to 'proto')
-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 333c8b088..ce8526742 100644
--- a/proto/go/gitalypb/operations.pb.go
+++ b/proto/go/gitalypb/operations.pb.go
@@ -2764,7 +2764,7 @@ type UserCommitFilesRequestHeader struct {
// point to the new commit.
Force bool `protobuf:"varint,9,opt,name=force,proto3" json:"force,omitempty"`
// start_sha specifies the SHA of the commit to use as the parent of new commit. Takes priority
- // over start_branch_name and branc_name. Optional.
+ // over start_branch_name and branch_name. Optional.
StartSha string `protobuf:"bytes,10,opt,name=start_sha,json=startSha,proto3" json:"start_sha,omitempty"`
// timestamp is the optional timestamp to use for the commits as author and
// committer date. If it's not set, the current time will be used.
diff --git a/proto/operations.proto b/proto/operations.proto
index 4b6264bb7..27a792572 100644
--- a/proto/operations.proto
+++ b/proto/operations.proto
@@ -831,7 +831,7 @@ message UserCommitFilesRequestHeader {
// point to the new commit.
bool force = 9;
// start_sha specifies the SHA of the commit to use as the parent of new commit. Takes priority
- // over start_branch_name and branc_name. Optional.
+ // over start_branch_name and branch_name. Optional.
string start_sha = 10;
// timestamp is the optional timestamp to use for the commits as author and
// committer date. If it's not set, the current time will be used.