diff --git a/exercises/concept/guidos-gorgeous-lasagna/.docs/instructions.md b/exercises/concept/guidos-gorgeous-lasagna/.docs/instructions.md index 2de533cb94..c566db9112 100644 --- a/exercises/concept/guidos-gorgeous-lasagna/.docs/instructions.md +++ b/exercises/concept/guidos-gorgeous-lasagna/.docs/instructions.md @@ -83,8 +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). """ ```