Skip to content

Commit 82b4ea2

Browse files
authored
Fix typos
* Changes "bord" to "board" * Changes "some)func" to "some_func"
2 parents ba238cf + 43a9c84 commit 82b4ea2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,7 @@ print(x, ': x in global')
722722
```py
723723
# Let's initialize a row
724724
row = [""]*3 #row i['', '', '']
725-
# Let's make a bord
725+
# Let's make a board
726726
board = [row]*3
727727
```
728728

@@ -790,7 +790,7 @@ def some_func(default_arg=[]):
790790
>>> some_func()
791791
>>> some_func.__defaults__
792792
(['some_string'],)
793-
>>> some)func()
793+
>>> some_func()
794794
>>> some_func.__defaults__
795795
(['some_string', 'some_string'],)
796796
>>> some_func([])

0 commit comments

Comments
 (0)