From 9659bdc14d0103de9d953fa0cceade7fbf064630 Mon Sep 17 00:00:00 2001 From: Leonard Lyubich Date: Wed, 26 May 2021 13:48:55 +0300 Subject: [PATCH] [#525] event/container: Fix docs of SessionToken methods Signed-off-by: Leonard Lyubich --- pkg/morph/event/container/eacl.go | 2 +- pkg/morph/event/container/put.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/morph/event/container/eacl.go b/pkg/morph/event/container/eacl.go index 97d31f53..c06c0552 100644 --- a/pkg/morph/event/container/eacl.go +++ b/pkg/morph/event/container/eacl.go @@ -39,7 +39,7 @@ func (x SetEACL) PublicKey() []byte { return x.publicKey } -// Session token returns binary token of the session +// SessionToken returns binary token of the session // within which the eACL was set. func (x SetEACL) SessionToken() []byte { return x.token diff --git a/pkg/morph/event/container/put.go b/pkg/morph/event/container/put.go index eb2f688c..da10caca 100644 --- a/pkg/morph/event/container/put.go +++ b/pkg/morph/event/container/put.go @@ -30,7 +30,7 @@ func (p Put) Signature() []byte { return p.signature } // PublicKey of container owner. func (p Put) PublicKey() []byte { return p.publicKey } -// Session token returns binary token of the session +// SessionToken returns binary token of the session // within which the container was created. func (p Put) SessionToken() []byte { return p.token