From 2ad89085a3416ef326c763e9e0bfda3cca64d27f Mon Sep 17 00:00:00 2001 From: Leonard Lyubich Date: Mon, 4 Jul 2022 11:19:11 +0300 Subject: [PATCH] [#225] container: Clarify docs of `Container` type initialization Signed-off-by: Leonard Lyubich --- container/container.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/container/container.go b/container/container.go index 4d84f27..4de1b0f 100644 --- a/container/container.go +++ b/container/container.go @@ -30,7 +30,7 @@ import ( // // Container type instances can represent different container states in the // system, depending on the context. To create new container in NeoFS zero -// instance be created, initialized using Init method and filled using +// instance SHOULD be declared, initialized using Init method and filled using // dedicated methods. Once container is saved in the NeoFS network, it can't be // changed: containers stored in the system are immutable, and NeoFS is a CAS // of containers that are identified by a fixed length value (see cid.ID type).