Fix the case of int in the 2.2 section of docs/gettingstarted.md
This commit is contained in:
parent
19f76c405c
commit
b185a7e0cf
|
@ -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)
|
||||
}
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue