From 39a904d419bffe9aa206935b067c40ae724c4d99 Mon Sep 17 00:00:00 2001 From: Jaxson Van Doorn Date: Sun, 22 Jul 2018 00:43:49 -0700 Subject: [PATCH] Fix typo in argument defaults section --- docs/reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference.md b/docs/reference.md index 9782f2b..48302fb 100644 --- a/docs/reference.md +++ b/docs/reference.md @@ -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) ->