Skip to content

Fix typo in maps.mdx #950

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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)