service: fix comments

This commit is contained in:
Leonard Lyubich 2020-05-06 15:32:13 +03:00
parent 4aac4d093d
commit 65d7c39e1a
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
package service package service
// ResetMeta returns current value and sets RequestMetaHeader to empty value. // CutMeta returns current value and sets RequestMetaHeader to empty value.
func (m *RequestMetaHeader) CutMeta() RequestMetaHeader { func (m *RequestMetaHeader) CutMeta() RequestMetaHeader {
cp := *m cp := *m
m.Reset() m.Reset()

View file

@ -22,7 +22,7 @@ type RawContainer interface {
SetRaw(bool) SetRaw(bool)
} }
// VersionContainer is an interface of the container of a numerical Version value with read access. // VersionSource is an interface of the container of a numerical Version value with read access.
type VersionSource interface { type VersionSource interface {
GetVersion() uint32 GetVersion() uint32
} }