From ba8a9dbd563accade86779d765899d64134c30b8 Mon Sep 17 00:00:00 2001 From: Trubnikov Sergey Date: Tue, 19 Jul 2022 11:34:24 +0000 Subject: [PATCH] doc: fix PR --- --- a/pallets/common/src/lib.rs +++ b/pallets/common/src/lib.rs @@ -21,7 +21,7 @@ //! It also provides this functionality to EVM, see [erc] and [eth] modules. //! //! ## Overview -//! +//! //! The Common pallet provides functionality for handling collections. //! //! The Common pallet provides functions for: @@ -177,7 +177,7 @@ Self::new_with_gas_limit(id, u64::MAX) } - /// Same as [`CollectionHandle::new`] but if collection not found [`Error::CollectionNotFound`] returned. + /// Same as [`CollectionHandle::new`] but if collection not found [CollectionNotFound](Error::CollectionNotFound) returned. pub fn try_get(id: CollectionId) -> Result { Ok(Self::new(id).ok_or(>::CollectionNotFound)?) } -- gitstuff