From 8517df0990f57474cdd8d7e6fc30e0bc76b27ad4 Mon Sep 17 00:00:00 2001 From: Jackson <163934542+jmintuitive@users.noreply.github.com> Date: Thu, 15 May 2025 11:57:24 -0400 Subject: [PATCH] Fix typo in maps.mdx Resolves https://github.com/aptos-labs/developer-docs/issues/949 --- apps/nextra/pages/en/build/smart-contracts/maps.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/nextra/pages/en/build/smart-contracts/maps.mdx b/apps/nextra/pages/en/build/smart-contracts/maps.mdx index 51a28c653..87b356014 100644 --- a/apps/nextra/pages/en/build/smart-contracts/maps.mdx +++ b/apps/nextra/pages/en/build/smart-contracts/maps.mdx @@ -111,7 +111,7 @@ module 0x42::map_usage { use aptos_framework::ordered_map; public entry fun main() { - let map = ordeded_map::new(); + let map = ordered_map::new(); map.add(1, 100); map.add(2, 200); @@ -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) \ No newline at end of file +- [Move Spiders Querying Smart Table via View Function](https://movespiders.com/courses/modules/datastructures/lessonId/10)