소스 검색

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
             ...