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:
Diffstat (limited to 'proto/diff.proto')
-rw-r--r--proto/diff.proto4
1 files changed, 2 insertions, 2 deletions
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).