From dbf84f6879bca12c2531641795972f79e4774612 Mon Sep 17 00:00:00 2001 From: Donald Bakong Date: Thu, 17 Oct 2019 23:53:28 -0400 Subject: [PATCH] docs: Fix typo on language-guide.md --- docs/language-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/language-guide.md b/docs/language-guide.md index e4d5dc0f..ab0f46e6 100644 --- a/docs/language-guide.md +++ b/docs/language-guide.md @@ -54,7 +54,7 @@ can be impossible to infer the item's type. An unordered set of unique keys of the same type and corresponding value pairs of another type, eg: -`{"boiling" => 100, "freezing" => 0, "room" => "25", "house" => 22, "canada" => -30,}`. +`{"boiling" => 100, "freezing" => 0, "room" => 25, "house" => 22, "canada" => -30,}`. That is to say, all of the keys must have the same type, and all of the values must have the same type. You can use any type for either, although it is probably advisable to avoid using very complex types as map keys.