1
0
Fork 0
mirror of https://github.com/satwikkansal/wtfpython synced 2025-07-04 20:38:06 +02:00

Fix relevant typos detected by codespell

Closes https://github.com/satwikkansal/wtfpython/issues/161
This commit is contained in:
Satwik 2019-12-27 20:04:34 +05:30
parent 9a2718ae3a
commit 2c910351b7
5 changed files with 5 additions and 24 deletions

2
README.md vendored
View file

@ -575,7 +575,7 @@ def one_more_func(): # A gotcha!
print("Iteration", i)
break
except ZeroDivisionError as e:
print("Zero division error ocurred", e)
print("Zero division error occurred", e)
```
**Output:**