From b185a7e0cf83de163d4b0687482ee1153c6cf00a Mon Sep 17 00:00:00 2001 From: Username404 Date: Sun, 26 Dec 2021 14:56:06 +0100 Subject: [PATCH] Fix the case of int in the 2.2 section of docs/gettingstarted.md --- docs/gettingstarted.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/gettingstarted.md b/docs/gettingstarted.md index 42fdc0e..6fb4a38 100644 --- a/docs/gettingstarted.md +++ b/docs/gettingstarted.md @@ -40,7 +40,7 @@ addIntToString (int, String) => { a, b; Named functions can have parameters **(with mandatory names)** like in this example: ``` -addIntToString(a: Int, b: String) => { +addIntToString(a: int, b: String) => { print_line(b + a) } ```