Skip to content

Commit 22065c3

Browse files
committedJan 28, 2022
fix reading comprehension
1 parent 8684eb7 commit 22065c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎Python/Module4_OOP/Methods.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ What will happen if you try to call `Dummy.func("hi")`? Why?
287287
288288
```python
289289
# Dummy.func("hi") would raise an error
290-
>>> Dummy(None, "hi")
290+
>>> Dummy.func(None, "hi")
291291
'hi'
292292
```
293293
<!-- #endregion -->

0 commit comments

Comments
 (0)
Failed to load comments.