Skip to content

Commit 78ed6e2

Browse files
authored
Update README.md
1 parent 5ca0f71 commit 78ed6e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ extern "C" fn ibc_packet_ack(env_ptr: u32, msg_ptr: u32) -> u32;
190190
extern "C" fn ibc_packet_timeout(env_ptr: u32, msg_ptr: u32) -> u32;
191191
```
192192

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
194194
you're using Rust, you can implement them by simply
195195
[re-exporting them from cosmwasm::exports](https://github.com/CosmWasm/cosmwasm/blob/v0.6.3/contracts/hackatom/src/lib.rs#L5).
196196
`instantiate`, `execute` and `query` must be defined by your contract.
@@ -346,7 +346,7 @@ pub trait Storage {
346346
fn get(&self, key: &[u8]) -> Option<Vec<u8>>;
347347

348348
#[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.
350350
///
351351
/// The bound `start` is inclusive and `end` is exclusive.
352352
///

0 commit comments

Comments
 (0)