From 43a9c84bacc5968cff9df5bdfa3ed1e1c5c1a0e1 Mon Sep 17 00:00:00 2001 From: Eyal Zekaria Date: Fri, 1 Sep 2017 11:28:17 +0200 Subject: [PATCH] Fix a couple of typos --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7a5a54c..774a93f 100755 --- a/README.md +++ b/README.md @@ -722,7 +722,7 @@ print(x, ': x in global') ```py # Let's initialize a row row = [""]*3 #row i['', '', ''] -# Let's make a bord +# Let's make a board board = [row]*3 ``` @@ -790,7 +790,7 @@ def some_func(default_arg=[]): >>> some_func() >>> some_func.__defaults__ (['some_string'],) - >>> some)func() + >>> some_func() >>> some_func.__defaults__ (['some_string', 'some_string'],) >>> some_func([])