mirror of
https://github.com/satwikkansal/wtfpython
synced 2024-11-22 02:54:25 +01:00
Fix typo
Changes Example to Example
This commit is contained in:
commit
9d0bba8c4c
2
README.md
vendored
2
README.md
vendored
@ -804,7 +804,7 @@ def some_func(default_arg=[]):
|
||||
(['some_string', 'some_string'],)
|
||||
```
|
||||
|
||||
- A common practice to avoid bugs due to mutable arguments is to assign `None` as the default value and later check if any value is passed to the function corresponding to that argument. Examlple:
|
||||
- A common practice to avoid bugs due to mutable arguments is to assign `None` as the default value and later check if any value is passed to the function corresponding to that argument. Example:
|
||||
|
||||
```py
|
||||
def some_func(default_arg=None):
|
||||
|
Loading…
Reference in New Issue
Block a user