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

Update README.md

Maybe, it should be 'dictionary' here?
This commit is contained in:
Docle 2020-12-03 14:19:56 +08:00 committed by GitHub
parent c954b71f67
commit f20d8f9188
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
README.md vendored
View File

@ -734,7 +734,7 @@ What is going on here?
2
>>> dictionary in another_set
True
>>> another_set.add(another_ordered_dict)
>>> another_set.add(dictionary)
>>> len(another_set)
2
```