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()