diff --git a/exercises/concept/lasagna/.docs/instructions.md b/exercises/concept/lasagna/.docs/instructions.md index f7e72d283..456e5b013 100644 --- a/exercises/concept/lasagna/.docs/instructions.md +++ b/exercises/concept/lasagna/.docs/instructions.md @@ -10,7 +10,7 @@ Define the `OvenTime` constant with how many minutes the lasagna should be in th ```go OvenTime -// Output: 40 +// => 40 ``` ## 2. Calculate the remaining oven time in minutes @@ -23,7 +23,7 @@ func RemainingOvenTime(actual int) int { } RemainingOvenTime(30) -// Output: 10 +// => 10 ``` ## 3. Calculate the preparation time in minutes @@ -36,7 +36,7 @@ func PreparationTime(numberOfLayers int) int { } PreparationTime(2) -// Output: 4 +// => 4 ``` ## 4. Calculate the elapsed working time in minutes @@ -50,5 +50,5 @@ func ElapsedTime(numberOfLayers, actualMinutesInOven int) int { } ElapsedTime(3, 20) -// Output: 26 +// => 26 ```