Explorar o código

Add missing comma in Mint solution (#399)

Alexander Teno %!s(int64=4) %!d(string=hai) anos
pai
achega
9a02480632
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      solutions/system_design/mint/README.md

+ 1 - 1
solutions/system_design/mint/README.md

@@ -242,7 +242,7 @@ class Budget(object):
     def create_budget_template(self):
         return {
             'DefaultCategories.HOUSING': income * .4,
-            'DefaultCategories.FOOD': income * .2
+            'DefaultCategories.FOOD': income * .2,
             'DefaultCategories.GAS': income * .1,
             'DefaultCategories.SHOPPING': income * .2
             ...