Skip to content

Commit

Permalink
chore(docs): fix wrong syntax for maps (#5060)
Browse files Browse the repository at this point in the history
Just a small mistake in the docs.
  • Loading branch information
olivernybroe authored Nov 26, 2023
1 parent be51281 commit 5f01b57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docs/03-language-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -1972,8 +1972,8 @@ assert(Array<num>[1, 2, 3] == Array<num>[1, 2, 3]);
assert(Array<num>[1, 2, 3] != Array<num>[3, 2, 1]);
assert(MutArray<num>[1, 2, 3] == Array<num>[1, 2, 3]);
assert(Map<str>{"a": "1", "b": "2"} == Map<str>{"a": "1", "b": "2"});
assert(Map<str>{"a": "1", "b": "2"} == Map<str>{"b": "2", "a": "1"});
assert(Map<str>{"a" => "1", "b" => "2"} == Map<str>{"a" => "1", "b" => "2"});
assert(Map<str>{"a" => "1", "b" => "2"} == Map<str>{"b" => "2", "a" => "1"});
assert(Set<num>[1, 2, 3] == Set<num>[1, 2, 3]);
assert(Set<num>[1, 2, 3] == Set<num>[3, 2, 1]);
Expand Down

0 comments on commit 5f01b57

Please sign in to comment.