Skip to content
This repository was archived by the owner on Jul 30, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/nextra/pages/en/build/smart-contracts/maps.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ module 0x42::map_usage {
use aptos_framework::ordered_map;

public entry fun main() {
let map = ordeded_map::new<u64, u64>();
let map = ordered_map::new<u64, u64>();
map.add(1, 100);
map.add(2, 200);

Expand Down Expand Up @@ -193,4 +193,4 @@ The `SmartTable` struct is designed to handle dynamic data efficiently:

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