Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a608739

Browse files
committed
Fix typo
1 parent 4852743 commit a608739

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Notes/05_Object_model/01_Dicts_revisited.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ You can view it.
248248
>>>
249249
```
250250

251-
This chain is called the **Method Resolutin Order**. The find an
251+
This chain is called the **Method Resolution Order**. The find an
252252
attribute, Python walks the MRO in order. The first match wins.
253253

254254
### MRO in Multiple Inheritance
@@ -264,7 +264,7 @@ class D(B): pass
264264
class E(C, D): pass
265265
```
266266

267-
What happens when you access at attribute?
267+
What happens when you access an attribute?
268268

269269
```python
270270
e = E()

0 commit comments

Comments
 (0)