Skip to content

Commit 3016771

Browse files
[autofix.ci] apply automated fixes
1 parent c336806 commit 3016771

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pages/storey/containers/map.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ assert_eq!(access.entry("alice").get().unwrap(), Some(Uint128::new(1000)));
3737
- _line 6:_ Here we construct the `Map` facade. The constructor takes a key, which is the prefix of
3838
the keys in the underlying storage backend.
3939
- _line 7:_ The [`access`] method returns a [`MapAccess`] entity, which allows manipulating the map.
40-
- _line 9:_ Here we try to access the balance of `alice`. Since she doesn't have one yet, it
41-
returns `None`. The [`entry`] method returns an [`ItemAccess`] entity, which allows manipulating
42-
the item stored under the key `alice`.
40+
- _line 9:_ Here we try to access the balance of `alice`. Since she doesn't have one yet, it returns
41+
`None`. The [`entry`] method returns an [`ItemAccess`] entity, which allows manipulating the item
42+
stored under the key `alice`.
4343
- _line 11:_ Here we set Alice's balance to `1000`.
4444
- _line 13:_ We check that the balance is now `1000`.
4545

0 commit comments

Comments
 (0)