From b03469964c04dd690162325f6475b5810cbaf7fa Mon Sep 17 00:00:00 2001 From: BethanyG Date: Wed, 29 Apr 2026 00:41:01 -0700 Subject: [PATCH] [Guido's Gorgeous Lasagna] Update instructions.md Clarified Docstring in task 5 per discussion in [forum](https://forum.exercism.org/t/guidos-gorgeous-lasagna-task-5-docstring-is-confusing/47323) --- .../concept/guidos-gorgeous-lasagna/.docs/instructions.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/exercises/concept/guidos-gorgeous-lasagna/.docs/instructions.md b/exercises/concept/guidos-gorgeous-lasagna/.docs/instructions.md index 1991721c38b..2de533cb948 100644 --- a/exercises/concept/guidos-gorgeous-lasagna/.docs/instructions.md +++ b/exercises/concept/guidos-gorgeous-lasagna/.docs/instructions.md @@ -80,12 +80,11 @@ def elapsed_time_in_minutes(number_of_layers, elapsed_bake_time): """Calculate the elapsed cooking time. :param number_of_layers: int - the number of layers in the lasagna. - :param elapsed_bake_time: int - elapsed cooking time. - :return: int - total time elapsed (in minutes) preparing and cooking. + :param elapsed_bake_time: int - time the lasagna has been baking in the oven. + :return: int - total time elapsed (in minutes) preparing and baking. This function takes two integers representing the number of lasagna layers and the - time already spent baking and calculates the total elapsed minutes spent cooking the - lasagna. + time already spent baking the lasagna. It calculates the total elapsed minutes spent cooking (preparing + baking). """ ```