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