diff options
-rw-r--r-- | tvix/castore-go/rpc_blobstore_grpc.pb.go | 4 | ||||
-rw-r--r-- | tvix/castore/protos/rpc_blobstore.proto | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tvix/castore-go/rpc_blobstore_grpc.pb.go b/tvix/castore-go/rpc_blobstore_grpc.pb.go index e10795bfaf54..d63a6cae9609 100644 --- a/tvix/castore-go/rpc_blobstore_grpc.pb.go +++ b/tvix/castore-go/rpc_blobstore_grpc.pb.go @@ -35,7 +35,7 @@ type BlobServiceClient interface { // gathering more data about it, like more granular chunking information // or baos. // Server implementations are not required to provide more granular chunking - // information, especially if the digest specified in [StatBlobRequest] is + // information, especially if the digest specified in `StatBlobRequest` is // already a chunk of a blob. Stat(ctx context.Context, in *StatBlobRequest, opts ...grpc.CallOption) (*StatBlobResponse, error) // Read allows reading (all) data of a blob/chunk by the BLAKE3 digest of @@ -147,7 +147,7 @@ type BlobServiceServer interface { // gathering more data about it, like more granular chunking information // or baos. // Server implementations are not required to provide more granular chunking - // information, especially if the digest specified in [StatBlobRequest] is + // information, especially if the digest specified in `StatBlobRequest` is // already a chunk of a blob. Stat(context.Context, *StatBlobRequest) (*StatBlobResponse, error) // Read allows reading (all) data of a blob/chunk by the BLAKE3 digest of diff --git a/tvix/castore/protos/rpc_blobstore.proto b/tvix/castore/protos/rpc_blobstore.proto index 195ab5bf4fa5..eebe39ace7b3 100644 --- a/tvix/castore/protos/rpc_blobstore.proto +++ b/tvix/castore/protos/rpc_blobstore.proto @@ -15,7 +15,7 @@ service BlobService { // gathering more data about it, like more granular chunking information // or baos. // Server implementations are not required to provide more granular chunking - // information, especially if the digest specified in [StatBlobRequest] is + // information, especially if the digest specified in `StatBlobRequest` is // already a chunk of a blob. rpc Stat(StatBlobRequest) returns (StatBlobResponse); |