diff --git a/cstrml/balances/src/tests.rs b/cstrml/balances/src/tests.rs index 8fe09886..acfd5bcf 100644 --- a/cstrml/balances/src/tests.rs +++ b/cstrml/balances/src/tests.rs @@ -268,7 +268,7 @@ macro_rules! decl_tests { assert_eq!(Balances::total_balance(&2), 256 * 20); assert_ok!(Balances::reserve(&2, 256 * 19 + 1)); // account 2 becomes mostly reserved - assert_eq!(Balances::free_balance(2), 255); // "free" account deleted." + assert_eq!(Balances::free_balance(2), 255); // "free" account deleted. assert_eq!(Balances::total_balance(&2), 256 * 20); // reserve still exists. assert_eq!(System::account_nonce(&2), 1); diff --git a/utils/ring/src/pbkdf2.rs b/utils/ring/src/pbkdf2.rs index 4f957f45..436316b4 100644 --- a/utils/ring/src/pbkdf2.rs +++ b/utils/ring/src/pbkdf2.rs @@ -111,6 +111,7 @@ //! // An attempt to log in with the right password succeeds. //! assert!(db.verify_password("alice", "@74d7]404j|W}6u").is_ok()); //! } +//! ``` use crate::{constant_time, digest, error, hmac, polyfill}; use core::num::NonZeroU32;