Skip to content

Commit d8f759e

Browse files
authored
chore: fix minor typos (#2550)
1 parent 05d7e38 commit d8f759e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

contracts/reflect/src/contract.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ pub fn try_change_owner(
109109
.add_attribute("owner", new_owner))
110110
}
111111

112-
/// This just stores the result for future query
112+
/// This just stores the result for future queries
113113
#[entry_point]
114114
pub fn reply(deps: DepsMut<SpecialQuery>, _env: Env, msg: Reply) -> Result<Response, ReflectError> {
115115
save_reply(deps.storage, msg.id, &msg)?;
@@ -181,7 +181,7 @@ mod tests {
181181
};
182182

183183
#[test]
184-
fn proper_instantialization() {
184+
fn proper_initialization() {
185185
let mut deps = mock_dependencies_with_custom_querier(&[]);
186186
let creator = deps.api.addr_make("creator");
187187

contracts/staking/src/state.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ pub struct InvestmentInfo {
5656
/// this is how much the owner takes as a cut when someone unbonds
5757
pub exit_tax: Decimal,
5858
/// All tokens are bonded to this validator
59-
/// addr_humanize/addr_canonicalize doesn't work for validator addrresses (e.g. cosmosvaloper1...)
59+
/// addr_humanize/addr_canonicalize doesn't work for validator addresses (e.g. cosmosvaloper1...)
6060
pub validator: String,
6161
/// This is the minimum amount we will pull out to reinvest, as well as a minimum
6262
/// that can be unbonded (to avoid needless staking tx)

0 commit comments

Comments
 (0)