瀏覽代碼

Add missing comma in Mint solution (#399)

Alexander Teno 4 年之前
父節點
當前提交
9a02480632
共有 1 個文件被更改,包括 1 次插入1 次删除
  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
             ...