diff --git a/concepts/basics/about.md b/concepts/basics/about.md index a0f22fa10..4e14e8b1c 100644 --- a/concepts/basics/about.md +++ b/concepts/basics/about.md @@ -102,7 +102,7 @@ Swift arguments are a bit special compared to other languages, they use [argumen The argument label is used when calling the function. The parameter name is used inside the function body to refer to the argument value. If you only assign one name to the argument it will be used as both the argument label and the parameter name. -When assigning the argument label name as: `_` so will the argument not have a label when calling the function, e.g: `functionName(argumentValue)` +When assigning the argument label name as: `_` the argument will not have a label when calling the function, e.g: `functionName(argumentValue)` To call a function you use the function name followed by the argument label and the argument value, like this: diff --git a/concepts/basics/introduction.md b/concepts/basics/introduction.md index 687d52aad..016712165 100644 --- a/concepts/basics/introduction.md +++ b/concepts/basics/introduction.md @@ -89,7 +89,7 @@ Swift arguments are a bit special compared to other languages, they use [argumen The argument label is used when calling the function. The parameter name is used inside the function body to refer to the argument value. If you only assign one name to the argument it will be used as both the argument label and the parameter name. -When assigning the argument label name as: `_` so will the argument not have a label when calling the function, e.g: `functionName(argumentValue)` +When assigning the argument label name as: `_` the argument will not have a label when calling the function, e.g: `functionName(argumentValue)` To call a function you use the function name followed by the argument label and the argument value, like this: diff --git a/exercises/concept/lasagna/.docs/introduction.md b/exercises/concept/lasagna/.docs/introduction.md index b838f3189..5a9f68030 100644 --- a/exercises/concept/lasagna/.docs/introduction.md +++ b/exercises/concept/lasagna/.docs/introduction.md @@ -89,7 +89,7 @@ Swift arguments are a bit special compared to other languages, they use [argumen The argument label is used when calling the function. The parameter name is used inside the function body to refer to the argument value. If you only assign one name to the argument it will be used as both the argument label and the parameter name. -When assigning the argument label name as: `_` so will the argument not have a label when calling the function, e.g: `functionName(argumentValue)` +When assigning the argument label name as: `_` the argument will not have a label when calling the function, e.g: `functionName(argumentValue)` To call a function you use the function name followed by the argument label and the argument value, like this: