From 81ba06776c02d48036b38dbea916b55d9f3f610e Mon Sep 17 00:00:00 2001 From: Travis Montoya Date: Fri, 1 Jul 2016 20:37:02 -0700 Subject: [PATCH] Fixed typo --- tutorials/tour/named-parameters.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/tour/named-parameters.md b/tutorials/tour/named-parameters.md index 794ff15506..46dce8663a 100644 --- a/tutorials/tour/named-parameters.md +++ b/tutorials/tour/named-parameters.md @@ -9,7 +9,7 @@ num: 33 tutorial-previous: default-parameter-values --- -When calling methods and functions, you can use the name of the variables expliclty in the call, like so: +When calling methods and functions, you can use the name of the variables explicitly in the call, like so: def printName(first:String, last:String) = { println(first + " " + last)