From 390e489cd70c9daaa03fa29640ea42d5b79cfda3 Mon Sep 17 00:00:00 2001 From: Ahmet Alp Balkan Date: Thu, 16 Aug 2018 12:50:32 -0700 Subject: [PATCH] pb: fix style issue in Ads message Signed-off-by: Ahmet Alp Balkan --- pb/demo.proto | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pb/demo.proto b/pb/demo.proto index d586b18..11b8c29 100644 --- a/pb/demo.proto +++ b/pb/demo.proto @@ -230,14 +230,13 @@ message AdsRequest { } message AdsResponse { - repeated Ads ads = 1; + repeated Ad ads = 1; } -message Ads { +message Ad { // url to redirect to when an ad is clicked. string redirect_url = 1; - // Optional text to display. - // Should not be more than 100 characters. + // short advertisement text to display. string text = 2; }