Skip to content

Commit df40c06

Browse files
committed
Fix typos
1 parent 0715542 commit df40c06

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ and this project adheres to
99
### Changed
1010

1111
- cosmwasm-std: Enable `add_event` and `add_events` functions to process types
12-
implemented `into<Event>` ([#2044])
12+
implementing `Into<Event>` ([#2044])
1313

1414
[#2044]: https://github.com/CosmWasm/cosmwasm/pull/2044
1515

packages/std/src/results/response.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -335,13 +335,13 @@ mod tests {
335335
assert!(!success.is_err());
336336
}
337337

338-
// struct implements `into<Event>`
338+
// struct implements `Into<Event>`
339339
#[derive(Clone)]
340340
struct OurEvent {
341341
msg: String,
342342
}
343343

344-
// allow define `into` rathan than `from` to define `into` clearly
344+
// allow define `into` rather than `from` to define `into` clearly
345345
#[allow(clippy::from_over_into)]
346346
impl Into<Event> for OurEvent {
347347
fn into(self) -> Event {

0 commit comments

Comments
 (0)