Fix the case of int in the 2.2 section of docs/gettingstarted.md

This commit is contained in:
Username404 2021-12-26 14:56:06 +01:00
parent cfbebed895
commit 856e715e29
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ addIntToString (int, String) => { a, b;
Named functions can have parameters **(with mandatory names)** like in this example: 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) print_line(b + a)
} }
``` ```