From a931473462478cf030695edf070efba9bedb3f07 Mon Sep 17 00:00:00 2001 From: BethanyG Date: Thu, 30 Apr 2026 12:43:52 -0700 Subject: [PATCH 1/2] Fixed mis-formatted docstring in ggl. --- .../concept/guidos-gorgeous-lasagna/.docs/instructions.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/exercises/concept/guidos-gorgeous-lasagna/.docs/instructions.md b/exercises/concept/guidos-gorgeous-lasagna/.docs/instructions.md index 2de533cb94..c8e9611acc 100644 --- a/exercises/concept/guidos-gorgeous-lasagna/.docs/instructions.md +++ b/exercises/concept/guidos-gorgeous-lasagna/.docs/instructions.md @@ -83,8 +83,10 @@ def elapsed_time_in_minutes(number_of_layers, elapsed_bake_time): :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 the lasagna. It calculates the total elapsed minutes spent cooking (preparing + baking). + This function takes two integers representing the number of + lasagna layers and the time already spent baking the lasagna. + It calculates the total elapsed minutes spent cooking + (preparing + baking). """ ``` From c8ee1ec84dff356331d06d714712e37ab80adb58 Mon Sep 17 00:00:00 2001 From: BethanyG Date: Thu, 30 Apr 2026 12:53:18 -0700 Subject: [PATCH 2/2] Reformatted docstring example to better wrap. --- .../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 c8e9611acc..c566db9112 100644 --- a/exercises/concept/guidos-gorgeous-lasagna/.docs/instructions.md +++ b/exercises/concept/guidos-gorgeous-lasagna/.docs/instructions.md @@ -83,10 +83,9 @@ def elapsed_time_in_minutes(number_of_layers, elapsed_bake_time): :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 the lasagna. - It calculates the total elapsed minutes spent cooking - (preparing + baking). + This function takes two integers representing the number of lasagna + layers and the time already spent baking the lasagna. It calculates + the total elapsed minutes spent cooking (preparing + baking). """ ```