@@ -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.
0 commit comments