git.delta.rocks / unique-network / refs/commits / 2f869bf11ca5

difftreelog

doc: fix PR

Trubnikov Sergey2022-07-29parent: #70cdec4.patch.diff
in: master

2 files changed

modifiedprimitives/data-structs/src/bounded.rsdiffbeforeafterboth
14// You should have received a copy of the GNU General Public License14// You should have received a copy of the GNU General Public License
15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
1616
17//! This module contins implementations for support bounded structures in [`serde`].17//! This module contins implementations for support bounded structures ([`BoundedVec`], [`BoundedBTreeMap`], [`BoundedBTreeSet`]) in [`serde`].
1818
19use core::fmt;19use core::fmt;
20use sp_std::collections::{btree_map::BTreeMap, btree_set::BTreeSet};20use sp_std::collections::{btree_map::BTreeMap, btree_set::BTreeSet};
modifiedprimitives/data-structs/src/lib.rsdiffbeforeafterboth
--- a/primitives/data-structs/src/lib.rs
+++ b/primitives/data-structs/src/lib.rs
@@ -16,7 +16,7 @@
 
 //! # Primitives crate.
 //!
-//! This crate contains amount of types, traits and constants.
+//! This crate contains types, traits and constants.
 
 #![cfg_attr(not(feature = "std"), no_std)]