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:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2022-02-17 16:45:46 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2022-02-17 16:52:58 +0300
commitbbd13f6c0e6ba014b2c38364ff4870e0b18b1592 (patch)
treedeb2a709d7fb76d24e85e306e17af0859e3c8d74 /proto
parent4ac6a5906d27098bf0f6fb9e19c190ea9722c70a (diff)
proto: Fix typo in documentation of PruneUnreachableObjects
Fix typo in the documentation of the PruneUnreachableObjects RPC definition.
Diffstat (limited to 'proto')
-rw-r--r--proto/go/gitalypb/repository-service_grpc.pb.go4
-rw-r--r--proto/repository-service.proto2
2 files changed, 3 insertions, 3 deletions
diff --git a/proto/go/gitalypb/repository-service_grpc.pb.go b/proto/go/gitalypb/repository-service_grpc.pb.go
index 871f667b1..9d9d56905 100644
--- a/proto/go/gitalypb/repository-service_grpc.pb.go
+++ b/proto/go/gitalypb/repository-service_grpc.pb.go
@@ -72,7 +72,7 @@ type RepositoryServiceClient interface {
RenameRepository(ctx context.Context, in *RenameRepositoryRequest, opts ...grpc.CallOption) (*RenameRepositoryResponse, error)
ReplicateRepository(ctx context.Context, in *ReplicateRepositoryRequest, opts ...grpc.CallOption) (*ReplicateRepositoryResponse, error)
OptimizeRepository(ctx context.Context, in *OptimizeRepositoryRequest, opts ...grpc.CallOption) (*OptimizeRepositoryResponse, error)
- // PruneUnreachableObjetcs will prune all objects which aren't reachable from
+ // PruneUnreachableObjects will prune all objects which aren't reachable from
// the repository's current set of references. Because pruning can only
// happen for objects which aren't packed, you are required to first run
// OptimizeRepository to explode any unreachable objects into loose objects.
@@ -830,7 +830,7 @@ type RepositoryServiceServer interface {
RenameRepository(context.Context, *RenameRepositoryRequest) (*RenameRepositoryResponse, error)
ReplicateRepository(context.Context, *ReplicateRepositoryRequest) (*ReplicateRepositoryResponse, error)
OptimizeRepository(context.Context, *OptimizeRepositoryRequest) (*OptimizeRepositoryResponse, error)
- // PruneUnreachableObjetcs will prune all objects which aren't reachable from
+ // PruneUnreachableObjects will prune all objects which aren't reachable from
// the repository's current set of references. Because pruning can only
// happen for objects which aren't packed, you are required to first run
// OptimizeRepository to explode any unreachable objects into loose objects.
diff --git a/proto/repository-service.proto b/proto/repository-service.proto
index 2a6c85c75..9401de3d0 100644
--- a/proto/repository-service.proto
+++ b/proto/repository-service.proto
@@ -229,7 +229,7 @@ service RepositoryService {
};
}
- // PruneUnreachableObjetcs will prune all objects which aren't reachable from
+ // PruneUnreachableObjects will prune all objects which aren't reachable from
// the repository's current set of references. Because pruning can only
// happen for objects which aren't packed, you are required to first run
// OptimizeRepository to explode any unreachable objects into loose objects.