From 0f478ffaa6f5ad39fab3005c0241bad12d305b38 Mon Sep 17 00:00:00 2001 From: Leonard Lyubich Date: Wed, 5 Aug 2020 20:21:36 +0300 Subject: [PATCH] [#33] decimal: Improve comments Signed-off-by: Leonard Lyubich --- decimal/decimal.proto | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/decimal/decimal.proto b/decimal/decimal.proto index 391b528..6282c12 100644 --- a/decimal/decimal.proto +++ b/decimal/decimal.proto @@ -3,10 +3,11 @@ package decimal; option go_package = "github.com/nspcc-dev/neofs-api-go/decimal"; option csharp_namespace = "NeoFS.API.Decimal"; -// Decimal is a structure used for representation of assets amount +// Decimal represents the decimal numbers. message Decimal { - // Value is value number + // Value carries number value. int64 Value = 1; - // Precision is precision number + + // Precision carries value precision. uint32 Precision = 2; }