From 8cf1148a41a9de9db35d952023449719ab42cd6e Mon Sep 17 00:00:00 2001 From: Sebastian Krzyszkowiak Date: Fri, 1 Sep 2017 23:05:03 +0100 Subject: [PATCH] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b5d9ec3..bd550e2 100755 --- a/README.md +++ b/README.md @@ -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):