From 5e8d143f99f5247e79b55fea0f236db15537f303 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Thu, 9 Dec 2021 14:45:57 +0000 Subject: [PATCH] fix comments --- space/proto/space.proto | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/space/proto/space.proto b/space/proto/space.proto index 86318ba..4cd7035 100644 --- a/space/proto/space.proto +++ b/space/proto/space.proto @@ -47,7 +47,7 @@ message UpdateResponse { string url = 1; } -// Delete an object +// Delete an object from space message DeleteRequest { // The name of the object. Use forward slash delimiter to implement a nested directory-like structure e.g. images/foo.jpg string name = 1; @@ -55,7 +55,7 @@ message DeleteRequest { message DeleteResponse {} -// List the objects in the space +// List the objects in space message ListRequest { // optional prefix for the name e.g. to return all the objects in the images directory pass images/ string prefix = 1; @@ -94,7 +94,7 @@ message HeadObject { string url = 5; } -// Read an object in storage. Use for private objects. +// Read an object in space. Use for private objects. message ReadRequest { // name of the object string name = 1; @@ -102,6 +102,6 @@ message ReadRequest { // Returns the raw object message ReadResponse { - // Returns the response as raw data + // Returns the object as raw data string object = 1; }