From 8e7edb9f3d471ee25ddf4fc8e9efc3c66e3e937b Mon Sep 17 00:00:00 2001 From: Ananthu <156899077+AnanthuNarashimman@users.noreply.github.com> Date: Tue, 17 Feb 2026 17:57:58 +0530 Subject: [PATCH] fix(curriculum): correct example output in budget app lab (#65914) --- .../english/blocks/lab-budget-app/5e44413e903586ffb414c94e.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/lab-budget-app/5e44413e903586ffb414c94e.md b/curriculum/challenges/english/blocks/lab-budget-app/5e44413e903586ffb414c94e.md index db9d065bccc..d9c1ab34de8 100644 --- a/curriculum/challenges/english/blocks/lab-budget-app/5e44413e903586ffb414c94e.md +++ b/curriculum/challenges/english/blocks/lab-budget-app/5e44413e903586ffb414c94e.md @@ -33,7 +33,7 @@ In this lab, you will build a simple budget app that tracks spending in differen ```py food = Category('Food') - food.deposit(1000, 'deposit') + food.deposit(1000, 'initial deposit') food.withdraw(10.15, 'groceries') food.withdraw(15.89, 'restaurant and more food for dessert') clothing = Category('Clothing')