Skip to content

Commit

Permalink
docs: fix simple typo, overriden -> overridden (#135)
Browse files Browse the repository at this point in the history
There is a small typo in README.md.

Should read `overridden` rather than `overriden`.
  • Loading branch information
timgates42 committed Jan 5, 2021
1 parent 3389362 commit 75284f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -111,7 +111,7 @@ just like a regular `dict`. There are no restrictions (other than what a regular
### Default values
For keys that are not in the dictionary, addict behaves like ```defaultdict(Dict)```, so missing keys return an empty ```Dict```
rather than raising ```KeyError```.
If this behaviour is not desired, it can be overriden using
If this behaviour is not desired, it can be overridden using
```Python
>>> class DictNoDefault(Dict):
>>> def __missing__(self, key):
Expand Down

0 comments on commit 75284f9

Please sign in to comment.