1
0
mirror of https://github.com/satwikkansal/wtfpython synced 2024-06-03 11:58:02 +02:00

Fix typo in example

Fix the True assignment example.
This commit is contained in:
Satwik Kansal 2017-08-31 10:47:19 -07:00 committed by GitHub
commit e7ce91da86

View File

@ -1022,7 +1022,7 @@ def some_func():
### When True is actually False ### When True is actually False
```py ```py
True == False True = False
if True == False: if True == False:
print("I've lost faith in truth!") print("I've lost faith in truth!")
``` ```