Fix small typo in method call documentation

This commit is contained in:
Ian Mackenzie
2016-04-15 15:16:24 +10:00
parent 694186810b
commit 95da4f90b9

View File

@ -11,7 +11,7 @@ You have a *receiver* expression (here `System`) followed by a `.`, then a name
are separated by commas:
:::wren
list.insert("item", 3)
list.insert(3, "item")
The argument list can also be empty: