From 5fe6d96bf1bddd291c1defb2c281829e3b4e9a55 Mon Sep 17 00:00:00 2001 From: Leonard Lyubich Date: Tue, 26 Apr 2022 13:38:45 +0300 Subject: [PATCH] [#197] session: Fix `Container.AppliedTo` method docs Method checks propagation, not limit. Signed-off-by: Leonard Lyubich --- session/container.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/session/container.go b/session/container.go index 4c0d7dc..789ec85 100644 --- a/session/container.go +++ b/session/container.go @@ -219,7 +219,7 @@ func (x *Container) ApplyOnlyTo(cnr cid.ID) { x.cnrSet = true } -// AppliedTo checks if session scope is limited by a given container. +// AppliedTo checks if the session is propagated to the given container. // // Zero Container is applied to all author's containers. //