From 7968c4994a3c1c1d9ce8ed099cd8812f5c2dd3f2 Mon Sep 17 00:00:00 2001 From: Leonard Lyubich Date: Fri, 4 Jun 2021 14:39:24 +0300 Subject: [PATCH] [#298] pkg/session: Remove redundant slashes from SetSessionKey docs Signed-off-by: Leonard Lyubich --- pkg/session/session.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/session/session.go b/pkg/session/session.go index 4d9780c..e407633 100644 --- a/pkg/session/session.go +++ b/pkg/session/session.go @@ -82,7 +82,7 @@ func (t *Token) SessionKey() []byte { } // SetSessionKey sets public key of the session -// // in a binary format. +// in a binary format. func (t *Token) SetSessionKey(v []byte) { t.setBodyField(func(body *session.SessionTokenBody) { body.SetSessionKey(v)