From 8227df280baccce7f42dc5822039de5f6d897ceb Mon Sep 17 00:00:00 2001 From: Ninad Khire <60597973+ninadkhire@users.noreply.github.com> Date: Tue, 15 Jul 2025 12:08:08 +0530 Subject: [PATCH] Fixed minor formatting issue in introduction.md Removed ~~~~exercism/warrning ~~~~ surrounding a paragraph and swift code snippet which was causing the ```swift ... ``` tags to be visible in the formatted md file. --- exercises/concept/lasagna-master/.docs/introduction.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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