[#33] decimal: Improve comments

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2020-08-05 20:21:36 +03:00 committed by Stanislav Bogatyrev
parent 1f0e5b6160
commit 0f478ffaa6

View file

@ -3,10 +3,11 @@ package decimal;
option go_package = "github.com/nspcc-dev/neofs-api-go/decimal"; option go_package = "github.com/nspcc-dev/neofs-api-go/decimal";
option csharp_namespace = "NeoFS.API.Decimal"; option csharp_namespace = "NeoFS.API.Decimal";
// Decimal is a structure used for representation of assets amount // Decimal represents the decimal numbers.
message Decimal { message Decimal {
// Value is value number // Value carries number value.
int64 Value = 1; int64 Value = 1;
// Precision is precision number
// Precision carries value precision.
uint32 Precision = 2; uint32 Precision = 2;
} }