File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ and this project adheres to
9
9
### Changed
10
10
11
11
- cosmwasm-std: Enable ` add_event ` and ` add_events ` functions to process types
12
- implemented ` into <Event>` ([ #2044 ] )
12
+ implementing ` Into <Event>` ([ #2044 ] )
13
13
14
14
[ #2044 ] : https://github.com/CosmWasm/cosmwasm/pull/2044
15
15
Original file line number Diff line number Diff line change @@ -335,13 +335,13 @@ mod tests {
335
335
assert ! ( !success. is_err( ) ) ;
336
336
}
337
337
338
- // struct implements `into <Event>`
338
+ // struct implements `Into <Event>`
339
339
#[ derive( Clone ) ]
340
340
struct OurEvent {
341
341
msg : String ,
342
342
}
343
343
344
- // allow define `into` rathan than `from` to define `into` clearly
344
+ // allow define `into` rather than `from` to define `into` clearly
345
345
#[ allow( clippy:: from_over_into) ]
346
346
impl Into < Event > for OurEvent {
347
347
fn into ( self ) -> Event {
You can’t perform that action at this time.
0 commit comments