From a60873931324bcdb52f5ddcb89fc64849e064246 Mon Sep 17 00:00:00 2001 From: David Beazley Date: Sat, 30 May 2020 07:54:35 -0500 Subject: [PATCH] Fix typo --- Notes/05_Object_model/01_Dicts_revisited.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Notes/05_Object_model/01_Dicts_revisited.md b/Notes/05_Object_model/01_Dicts_revisited.md index e49a950..61cb6d5 100644 --- a/Notes/05_Object_model/01_Dicts_revisited.md +++ b/Notes/05_Object_model/01_Dicts_revisited.md @@ -248,7 +248,7 @@ You can view it. >>> ``` -This chain is called the **Method Resolutin Order**. The find an +This chain is called the **Method Resolution Order**. The find an attribute, Python walks the MRO in order. The first match wins. ### MRO in Multiple Inheritance @@ -264,7 +264,7 @@ class D(B): pass class E(C, D): pass ``` -What happens when you access at attribute? +What happens when you access an attribute? ```python e = E()