Skip to content
This repository has been archived by the owner on May 26, 2024. It is now read-only.

Fix small typo: doesnt -> doesn't #42

Merged
merged 1 commit into from Feb 9, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -349,7 +349,7 @@ assert str(null) == '' # Null objects string representation is the empty string.
assert repr(null) == '' # Null objects repr is the empty string.
assert bool(null) is False # Null object evaluates to False as a boolean.

# Trying to delete attributes doesnt do anything and won't error.
# Trying to delete attributes doesn't do anything and won't error.
try:
del null.foo
del null.foo.bar
Expand Down