Skip to content

Commit

Permalink
address some review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
uint committed Jun 6, 2024
1 parent 933dcf3 commit 1237c57
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/cw-storage-plus/containers/item.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ assert_eq!(admin.load(&storage).unwrap(), "some_address");
use cw_storage_plus::Item;
use serde::{Serialize, Deserialize};

#[derive(PartialEq, Debug, Serialize, Deserialize)]
#[cw_serde]
struct Config {
admin: String,
interest_rate: Decimal,
Expand Down
2 changes: 1 addition & 1 deletion src/pages/cw-storage-plus/containers/map.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ or
[`range`](https://docs.rs/cw-storage-plus/latest/cw_storage_plus/struct.Map.html#method.range).

<Callout>
Bounded iteration is always bounded inclusively below and exclusively above - a lot like [`start..end`](https://doc.rust-lang.org/std/ops/struct.Range.html) in Rust.
[For each bound, it's possible to decide if it's meant to be inclusive or exclusive.](https://docs.rs/cw-storage-plus/latest/cw_storage_plus/enum.Bound.html)
</Callout>

More information can be found in the
Expand Down

0 comments on commit 1237c57

Please sign in to comment.