Skip to content

Commit

Permalink
fix wrong doc type
Browse files Browse the repository at this point in the history
  • Loading branch information
shawntabrizi committed Jun 25, 2024
1 parent 4fa11a8 commit 21a9124
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion steps/7/src/balances.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use std::collections::BTreeMap;
/// It is a simple module which keeps track of how much balance each account has in this state
/// machine.
pub struct Pallet {
// A simple storage mapping from accounts (`&'static str`) to their balances (`u128`).
// A simple storage mapping from accounts (`String`) to their balances (`u128`).
balances: BTreeMap<String, u128>,
}

Expand Down

0 comments on commit 21a9124

Please sign in to comment.