mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-09-02 05:42:41 +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:
committed by
GitHub
parent
322dea30d0
commit
684c103aa2
@@ -62,7 +62,7 @@ $ expense-tracker list
|
|||||||
$ expense-tracker summary
|
$ expense-tracker summary
|
||||||
# Total expenses: $30
|
# Total expenses: $30
|
||||||
|
|
||||||
$ expense-tracker delete --id 1
|
$ expense-tracker delete --id 2
|
||||||
# Expense deleted successfully
|
# Expense deleted successfully
|
||||||
|
|
||||||
$ expense-tracker summary
|
$ expense-tracker summary
|
||||||
|
Reference in New Issue
Block a user