We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4852743 commit a608739Copy full SHA for a608739
Notes/05_Object_model/01_Dicts_revisited.md
@@ -248,7 +248,7 @@ You can view it.
248
>>>
249
```
250
251
-This chain is called the **Method Resolutin Order**. The find an
+This chain is called the **Method Resolution Order**. The find an
252
attribute, Python walks the MRO in order. The first match wins.
253
254
### MRO in Multiple Inheritance
@@ -264,7 +264,7 @@ class D(B): pass
264
class E(C, D): pass
265
266
267
-What happens when you access at attribute?
+What happens when you access an attribute?
268
269
```python
270
e = E()
0 commit comments