diff --git a/exercises/concept/lasagna-master/.docs/introduction.md b/exercises/concept/lasagna-master/.docs/introduction.md index c9eae16b..d5741836 100644 --- a/exercises/concept/lasagna-master/.docs/introduction.md +++ b/exercises/concept/lasagna-master/.docs/introduction.md @@ -65,7 +65,6 @@ updateVersion(&dbRecord) // dbRecord is now (3, "Exercism") ``` -~~~~exercism/warrning There are a couple of extra rules one should be aware of regarding in-out parameters. 1. Inside a function with in-out parameters, you are not allowed to reference the variable that was passed in as the in-out parameter. @@ -81,7 +80,7 @@ var mutVar = 0 inoutFunc(&mutVar, &mutVar) // raises a compiler error: "Inout arguments are not allowed to alias each other" ``` -~~~~ + ## Nested functions