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/errors.proto')
-rw-r--r--proto/errors.proto4
1 files changed, 2 insertions, 2 deletions
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;