From 967d8190cb619d85f3557057bd548b8b78d2c42e Mon Sep 17 00:00:00 2001 From: Simon Charette Date: Thu, 31 Aug 2017 13:40:47 -0400 Subject: [PATCH] Fix the True assignment example. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8edc986..7384def 100755 --- a/README.md +++ b/README.md @@ -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!") ```