From bcc1ab922ca9b58e265b80238bb98f228e91c81b Mon Sep 17 00:00:00 2001 From: Mohamad Salman <139472418+MohamadSalman11@users.noreply.github.com> Date: Fri, 21 Feb 2025 08:41:52 +0100 Subject: [PATCH] fix: Add missing comma in 'Concise right?' (#58913) --- .../index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/pages/learn/scientific-computing-with-python/learn-lambda-functions-by-building-an-expense-tracker/index.md b/client/src/pages/learn/scientific-computing-with-python/learn-lambda-functions-by-building-an-expense-tracker/index.md index 8c2f2239372..69eb007f936 100644 --- a/client/src/pages/learn/scientific-computing-with-python/learn-lambda-functions-by-building-an-expense-tracker/index.md +++ b/client/src/pages/learn/scientific-computing-with-python/learn-lambda-functions-by-building-an-expense-tracker/index.md @@ -30,6 +30,6 @@ print(even_numbers) # Output: [2, 4, 6] ``` -Concise right? +Concise, right? In this project, you'll explore the power of lambda functions by creating an expense tracker that allows you to add, list, total, and filter expenses by category. You'll see how the application leverages lambda functions to streamline certain operations, making the code more concise and easier to read.