From 7299e1c58d7fa13eb501bd2d7ab64849ca997a35 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Sun, 23 Dec 2018 18:10:12 -0600 Subject: [PATCH] Add missing code block language --- reason/create-a-map-of-strings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reason/create-a-map-of-strings.md b/reason/create-a-map-of-strings.md index 6cdf1f5..71f470e 100644 --- a/reason/create-a-map-of-strings.md +++ b/reason/create-a-map-of-strings.md @@ -12,7 +12,7 @@ module StringMap = Map.Make(String); We can then use that module to to create an empty map followed by adding key-value pairs to it. -``` +```reason StringMap.empty |> StringMap.add("Morty", "Smith") |> StringMap.add("Rick", "Sanchez")