Fix typo in argument defaults section

This commit is contained in:
Jaxson Van Doorn 2018-07-22 00:43:49 -07:00 committed by leaf
parent 8c8f0874df
commit 39a904d419

View File

@ -195,7 +195,7 @@ func = (num) => @value + num
It is possible to provide default values for the arguments of a function. An
argument is determined to be empty if its value is `nil`. Any `nil` arguments
that have a default value will be replace before the body of the function is run.
that have a default value will be replaced before the body of the function is run.
```moon
my_function = (name="something", height=100) ->