From ee101f2c6b8dbf527f77c8e005f2ded9ebdf4436 Mon Sep 17 00:00:00 2001 From: Uwe Seimet Date: Sat, 18 Dec 2021 13:14:31 +0100 Subject: [PATCH] Comment update --- src/raspberrypi/rascsi_interface.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/raspberrypi/rascsi_interface.proto b/src/raspberrypi/rascsi_interface.proto index 05ebf6f9..515046b7 100644 --- a/src/raspberrypi/rascsi_interface.proto +++ b/src/raspberrypi/rascsi_interface.proto @@ -161,7 +161,6 @@ enum PbOperation { // The operation parameter meta data. The parameter data type is provided by the protobuf API. message PbOperationParameter { - // The operation name at the time the protobuf data were generated from the .proto interface file string name = 1; // Optional short localized description, key is the lower case locale (e.g. en, de). // Falling back to "en" is recommended if a description for a particular language is missing. @@ -180,7 +179,8 @@ message PbOperationMetaData { repeated PbOperationParameter parameters = 2; } -// Mapping of operation names to their meta data +// Mapping of operation names to their meta data. +// The names are the names at the time the server-side protobuf data were generated from the .proto interface file. message PbOperationInfo { map operations = 1; }