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

Merge pull request #264 from Nucaranlaeg/patch-1

Fix small typo
This commit is contained in:
Satwik Kansal 2021-04-09 16:58:51 +05:30 committed by GitHub
commit 1787b50422
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
README.md vendored
View File

@ -207,7 +207,7 @@ SyntaxError: invalid syntax
(6, 9) (6, 9)
>>> (a, b = 16, 19) # Oops >>> (a, b = 16, 19) # Oops
File "<stdin>", line 1 File "<stdin>", line 1
(a, b = 6, 9) (a, b = 16, 19)
^ ^
SyntaxError: invalid syntax SyntaxError: invalid syntax