From d9e176abb6eca36c565bbf24719a227bcdaa952d Mon Sep 17 00:00:00 2001 From: "A.H" <73077907+ahcodes@users.noreply.github.com> Date: Fri, 25 Jun 2021 19:21:26 +0530 Subject: [PATCH] Fixed minor typos --- data_structures/2_Arrays/2_arrays_exercise.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data_structures/2_Arrays/2_arrays_exercise.md b/data_structures/2_Arrays/2_arrays_exercise.md index 81d65f4..e249d02 100644 --- a/data_structures/2_Arrays/2_arrays_exercise.md +++ b/data_structures/2_Arrays/2_arrays_exercise.md @@ -1,6 +1,6 @@ # Exercise: Array DataStructure -1. Let us say your expense for every month are listed below, +1. Let us say your expenses for every month are listed below, 1. January - 2200 2. February - 2350 3. March - 2600 @@ -19,7 +19,7 @@ Create a list to store these monthly expenses and using that find out, [Solution](https://github.com/codebasics/data-structures-algorithms-python/blob/master/data_structures/2_Arrays/Solution/1_expenses.py) -2. You have a list of your favourite marvel super heros. +2. You have a list of your favourite Marvel superheroes. ``` heros=['spider man','thor','hulk','iron man','captain america'] ```