From d910225adfd89db32748760bc2ef5a0af0450056 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?N=C3=A9stor=20Brito?= Date: Fri, 2 Aug 2024 17:30:24 +0200 Subject: [PATCH] Fix typo in 08_dictionaries.md There is a typo in the property "is_marred" of person dictionary an then this line "del person['is_married'] # Removes the is_married item" fails --- 08_Day_Dictionaries/08_dictionaries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/08_Day_Dictionaries/08_dictionaries.md b/08_Day_Dictionaries/08_dictionaries.md index 20248a1de..d42400d82 100644 --- a/08_Day_Dictionaries/08_dictionaries.md +++ b/08_Day_Dictionaries/08_dictionaries.md @@ -60,7 +60,7 @@ person = { 'last_name':'Yetayeh', 'age':250, 'country':'Finland', - 'is_marred':True, + 'is_married':True, 'skills':['JavaScript', 'React', 'Node', 'MongoDB', 'Python'], 'address':{ 'street':'Space street',