From cfd24944a49274e39dba77797cb78e5fc4b7eed6 Mon Sep 17 00:00:00 2001 From: Stanislav Bogatyrev Date: Tue, 11 Aug 2020 18:39:34 +0300 Subject: [PATCH] [#38] Typo fixes Signed-off-by: Stanislav Bogatyrev --- netmap/types.proto | 2 +- object/service.proto | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/netmap/types.proto b/netmap/types.proto index da825b2..44866d2 100644 --- a/netmap/types.proto +++ b/netmap/types.proto @@ -31,7 +31,7 @@ message PlacementRule { Operation op = 1; - oneof Args { + oneof args { string value = 2; SimpleFilters f_args = 3; } diff --git a/object/service.proto b/object/service.proto index 88c3805..df5d6ab 100644 --- a/object/service.proto +++ b/object/service.proto @@ -86,7 +86,7 @@ message GetResponse { Header header = 3; } // Carries the single message of the response stream. - oneof ObjectPart { + oneof object_part { // Initialization parameters of the object stream. Init init =1; // Part of the object payload. @@ -123,7 +123,7 @@ message PutRequest { } // Carries the single part of the query stream. - oneof ObjectPart { + oneof object_part { // Carries the initialization parameters of the object stream. Init init = 1; // Carries part of the object payload. @@ -237,7 +237,7 @@ message HeadResponse { uint64 payload_length = 5; } // Carries the requested object header or it's part - oneof Head{ + oneof head{ Header header = 1; ShortHeader short_header = 2; }