From 450376671e24e61b1f5b54b63c112b6ca1e20ab1 Mon Sep 17 00:00:00 2001 From: Grigoriy Simonov Date: Thu, 21 Jul 2022 09:07:44 +0000 Subject: [PATCH] doc: fix documentation about allowlist --- --- a/pallets/nonfungible/src/lib.rs +++ b/pallets/nonfungible/src/lib.rs @@ -86,7 +86,7 @@ //! //! ## Assumptions //! -//! * Sender should be in collection's allow list to perform operations on tokens. +//! * To perform operations on tokens sender should be in collection's allow list if collection access mode is `AllowList`. #![cfg_attr(not(feature = "std"), no_std)] @@ -441,7 +441,7 @@ // unchecked calls skips any permission checks impl Pallet { - /// Create ТFT collection + /// Create NFT collection /// /// `init_collection` will take non-refundable deposit for collection creation. /// @@ -454,7 +454,7 @@ >::init_collection(owner, data, is_external) } - /// Destroy ТFT collection + /// Destroy NFT collection /// /// `destroy_collection` will throw error if collection contains any tokens. /// Only owner can destroy collection. -- gitstuff