Skip to content

Commit bd3e4b7

Browse files
authored
docs: fix typos (#2554)
1 parent 830cc69 commit bd3e4b7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

packages/std/src/query/wasm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ pub enum WasmQuery {
5252
/// Inclusive start bound. This is the first key you would like to get data for.
5353
///
5454
/// If `start` is lexicographically greater than or equal to `end`,
55-
/// an empty range is described, mo matter of the order.
55+
/// an empty range is described, no matter of the order.
5656
start: Option<Binary>,
5757
/// Exclusive end bound. This is the key after the last key you would like to get data for.
5858
end: Option<Binary>,

packages/std/src/traits.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ pub trait Storage {
5959
/// Allows iteration over a set of key/value pairs, either forwards or backwards.
6060
///
6161
/// The bound `start` is inclusive and `end` is exclusive.
62-
/// If `start` is lexicographically greater than or equal to `end`, an empty range is described, mo matter of the order.
62+
/// If `start` is lexicographically greater than or equal to `end`, an empty range is described, no matter of the order.
6363
#[cfg(feature = "iterator")]
6464
#[allow(unused_variables)]
6565
fn range<'a>(
@@ -76,7 +76,7 @@ pub trait Storage {
7676
/// Allows iteration over a set of keys, either forwards or backwards.
7777
///
7878
/// The bound `start` is inclusive and `end` is exclusive.
79-
/// If `start` is lexicographically greater than or equal to `end`, an empty range is described, mo matter of the order.
79+
/// If `start` is lexicographically greater than or equal to `end`, an empty range is described, no matter of the order.
8080
///
8181
/// The default implementation uses [`Storage::range`] and discards the values. More efficient
8282
/// implementations might be possible depending on the storage.
@@ -93,7 +93,7 @@ pub trait Storage {
9393
/// Allows iteration over a set of values, either forwards or backwards.
9494
///
9595
/// The bound `start` is inclusive and `end` is exclusive.
96-
/// If `start` is lexicographically greater than or equal to `end`, an empty range is described, mo matter of the order.
96+
/// If `start` is lexicographically greater than or equal to `end`, an empty range is described, no matter of the order.
9797
///
9898
/// The default implementation uses [`Storage::range`] and discards the keys. More efficient implementations
9999
/// might be possible depending on the storage.

packages/vm/src/backend.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ pub trait Storage {
9999
///
100100
/// The bound `start` is inclusive and `end` is exclusive.
101101
///
102-
/// If `start` is lexicographically greater than or equal to `end`, an empty range is described, mo matter of the order.
102+
/// If `start` is lexicographically greater than or equal to `end`, an empty range is described, no matter of the order.
103103
///
104104
/// This call must not change data in the storage, but creating and storing a new iterator can be a mutating operation on
105105
/// the Storage implementation.

0 commit comments

Comments
 (0)