Fix the True assignment example.

This commit is contained in:
Simon Charette
2017-08-31 13:40:47 -04:00
committed by GitHub
parent ddbbe69186
commit 967d8190cb

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!")
```