Skip to content

Commit 70c03e9

Browse files
authored
Merge pull request satwikkansal#254 from umutambyi-gad/master
📝 Fixed simple typos
2 parents 48256e1 + 9d0ad9e commit 70c03e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2135,7 +2135,7 @@ UnboundLocalError: local variable 'a' referenced before assignment
21352135
>>> another_func()
21362136
2
21372137
```
2138-
* The keywords `global` and `nonlocal` tell the python interpreter to not delcare new variables and look them up in the corresponding outer scopes.
2138+
* The keywords `global` and `nonlocal` tell the python interpreter to not declare new variables and look them up in the corresponding outer scopes.
21392139
* Read [this](https://sebastianraschka.com/Articles/2014_python_scope_and_namespaces.html) short but an awesome guide to learn more about how namespaces and scope resolution works in Python.
21402140
21412141
---
@@ -3114,7 +3114,7 @@ Ellipsis
31143114
>>> ...
31153115
Ellipsis
31163116
```
3117-
- Eliipsis can be used for several purposes,
3117+
- Ellipsis can be used for several purposes,
31183118
+ As a placeholder for code that hasn't been written yet (just like `pass` statement)
31193119
+ In slicing syntax to represent the full slices in remaining direction
31203120
```py

0 commit comments

Comments
 (0)