Skip to content

Commit 9d0bba8

Browse files
authored
Fix typo
Changes Example to Example
2 parents 424b240 + 8cf1148 commit 9d0bba8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -804,7 +804,7 @@ def some_func(default_arg=[]):
804804
(['some_string', 'some_string'],)
805805
```
806806

807-
- 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:
807+
- 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:
808808

809809
```py
810810
def some_func(default_arg=None):

0 commit comments

Comments
 (0)