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
```py
True == False
True = False
if True == False:
print("I've lost faith in truth!")
```