File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ extern "C" fn ibc_packet_ack(env_ptr: u32, msg_ptr: u32) -> u32;
190
190
extern " C" fn ibc_packet_timeout (env_ptr : u32 , msg_ptr : u32 ) -> u32 ;
191
191
```
192
192
193
- ` allocate ` /` deallocate ` allows the host to manage data within the Wasm VM. If
193
+ ` allocate ` /` deallocate ` allow the host to manage data within the Wasm VM. If
194
194
you're using Rust, you can implement them by simply
195
195
[ re-exporting them from cosmwasm::exports] ( https://github.com/CosmWasm/cosmwasm/blob/v0.6.3/contracts/hackatom/src/lib.rs#L5 ) .
196
196
` instantiate ` , ` execute ` and ` query ` must be defined by your contract.
@@ -346,7 +346,7 @@ pub trait Storage {
346
346
fn get (& self , key : & [u8 ]) -> Option <Vec <u8 >>;
347
347
348
348
#[cfg(feature = " iterator" )]
349
- /// Allows iteration over a set of key/value pairs, either forward or backward .
349
+ /// Allows iteration over a set of key/value pairs, either forwards or backwards .
350
350
///
351
351
/// The bound `start` is inclusive and `end` is exclusive.
352
352
///
You can’t perform that action at this time.
0 commit comments