1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-01 21:32:35 +02:00

fix(expense tracker): logical error in description (#7720)

If we are referencing by id and not index then --id 1 would remove the first element making the summary 10 and not 20

Solution: delete the second element instead to make the summary add up correctly.
This commit is contained in:
ASIIMWE GRACE NOBLE
2024-11-12 08:26:50 +03:00
committed by GitHub
parent 322dea30d0
commit 684c103aa2

View File

@@ -62,7 +62,7 @@ $ expense-tracker list
$ expense-tracker summary
# Total expenses: $30
$ expense-tracker delete --id 1
$ expense-tracker delete --id 2
# Expense deleted successfully
$ expense-tracker summary