Skip to content

Commit 8517df0

Browse files
authored
Fix typo in maps.mdx
Resolves #949
1 parent 0ce4ecc commit 8517df0

File tree

1 file changed

+2
-2
lines changed
  • apps/nextra/pages/en/build/smart-contracts

1 file changed

+2
-2
lines changed

apps/nextra/pages/en/build/smart-contracts/maps.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ module 0x42::map_usage {
111111
use aptos_framework::ordered_map;
112112
113113
public entry fun main() {
114-
let map = ordeded_map::new<u64, u64>();
114+
let map = ordered_map::new<u64, u64>();
115115
map.add(1, 100);
116116
map.add(2, 200);
117117
@@ -193,4 +193,4 @@ The `SmartTable` struct is designed to handle dynamic data efficiently:
193193

194194
- [Move Spiders Smart Table](https://movespiders.com/courses/modules/datastructures/lessonId/7)
195195
- [Move Spiders Querying Smart Table via FullNode APIs](https://movespiders.com/courses/modules/datastructures/lessonId/9)
196-
- [Move Spiders Querying Smart Table via View Function](https://movespiders.com/courses/modules/datastructures/lessonId/10)
196+
- [Move Spiders Querying Smart Table via View Function](https://movespiders.com/courses/modules/datastructures/lessonId/10)

0 commit comments

Comments
 (0)