From b970be2cd70db0e2d5c373342b113b9476ee87a3 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Fri, 10 Dec 2021 10:38:11 +0000 Subject: [PATCH] update comments --- translate/proto/translate.proto | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/translate/proto/translate.proto b/translate/proto/translate.proto index 6cc73cd..d31f297 100644 --- a/translate/proto/translate.proto +++ b/translate/proto/translate.proto @@ -18,7 +18,7 @@ message Translation { string model = 3; } -// TextRequest is the basic edition request +// Basic text translation message TextRequest { // The contents to be translated string content = 1; @@ -37,5 +37,6 @@ message TextRequest { // TextResponse is the basic edition response message TextResponse { + // The translated text Translation translation = 1; }