Skip to content

Commit

Permalink
[framework] fix simple map typo
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 4665fda7032142ff566112942e465d8b6af6f993
  • Loading branch information
jolestar authored and aptos-bot committed Oct 23, 2024
1 parent 384b8e4 commit ef32944
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aptos-stdlib/doc/simple_map.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# Module `0x1::simple_map`

This module provides a solution for sorted maps, that is it has the properties that
This module provides a solution for unsorted maps, that is it has the properties that
1) Keys point to Values
2) Each Key must be unique
3) A Key can be found within O(N) time
Expand Down
2 changes: 1 addition & 1 deletion aptos-stdlib/sources/simple_map.move
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// This module provides a solution for sorted maps, that is it has the properties that
/// This module provides a solution for unsorted maps, that is it has the properties that
/// 1) Keys point to Values
/// 2) Each Key must be unique
/// 3) A Key can be found within O(N) time
Expand Down

0 comments on commit ef32944

Please sign in to comment.