diff --git a/cmd/frostfs-adm/README.md b/cmd/frostfs-adm/README.md index 13bcd111..30a83690 100644 --- a/cmd/frostfs-adm/README.md +++ b/cmd/frostfs-adm/README.md @@ -1,4 +1,4 @@ -# NeoFS Admin Tool +# FrostFS Admin Tool ## Overview diff --git a/cmd/frostfs-adm/internal/modules/morph/internal/types.go b/cmd/frostfs-adm/internal/modules/morph/internal/types.go index 705ae007..93d2cb00 100644 --- a/cmd/frostfs-adm/internal/modules/morph/internal/types.go +++ b/cmd/frostfs-adm/internal/modules/morph/internal/types.go @@ -18,7 +18,7 @@ func StringifySubnetClientGroupID(id *SubnetClientGroupID) string { return string(text) } -// MarshalText encodes SubnetClientGroupID into text format according to NeoFS API V2 protocol: +// MarshalText encodes SubnetClientGroupID into text format according to FrostFS API V2 protocol: // value in base-10 integer string format. // // It implements encoding.TextMarshaler. @@ -28,7 +28,7 @@ func (x *SubnetClientGroupID) MarshalText() ([]byte, error) { return []byte(strconv.FormatUint(uint64(num), 10)), nil } -// UnmarshalText decodes the SubnetID from the text according to NeoFS API V2 protocol: +// UnmarshalText decodes the SubnetID from the text according to FrostFS API V2 protocol: // should be base-10 integer string format with bitsize = 32. // // Returns strconv.ErrRange if integer overflows uint32. @@ -47,13 +47,13 @@ func (x *SubnetClientGroupID) UnmarshalText(txt []byte) error { return nil } -// Marshal encodes the SubnetClientGroupID into a binary format of NeoFS API V2 protocol +// Marshal encodes the SubnetClientGroupID into a binary format of FrostFS API V2 protocol // (Protocol Buffers with direct field order). func (x *SubnetClientGroupID) Marshal() ([]byte, error) { return proto.Marshal(x) } -// Unmarshal decodes the SubnetClientGroupID from NeoFS API V2 binary format (see Marshal). Must not be called on nil. +// Unmarshal decodes the SubnetClientGroupID from FrostFS API V2 binary format (see Marshal). Must not be called on nil. func (x *SubnetClientGroupID) Unmarshal(data []byte) error { return proto.Unmarshal(data, x) } diff --git a/cmd/frostfs-adm/internal/modules/morph/internal/types.pb.go b/cmd/frostfs-adm/internal/modules/morph/internal/types.pb.go index 62e41763..49cce0ae 100644 Binary files a/cmd/frostfs-adm/internal/modules/morph/internal/types.pb.go and b/cmd/frostfs-adm/internal/modules/morph/internal/types.pb.go differ diff --git a/cmd/frostfs-adm/internal/modules/morph/internal/types.proto b/cmd/frostfs-adm/internal/modules/morph/internal/types.proto index c15744f3..8f5ce70d 100644 --- a/cmd/frostfs-adm/internal/modules/morph/internal/types.proto +++ b/cmd/frostfs-adm/internal/modules/morph/internal/types.proto @@ -4,7 +4,7 @@ package neo.fs.v2.refs; option go_package = "github.com/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/internal"; -// Client group identifier in the NeoFS subnet. +// Client group identifier in the FrostFS subnet. // // String representation of a value is base-10 integer. //