diff --git a/README.md b/README.md index 5f58833..41d4313 100644 --- a/README.md +++ b/README.md @@ -71,9 +71,9 @@ value = .setdefault(key, default=None) # Same, but also adds default to ```python .update() # Or: dict_a = {**dict_a, **dict_b}. - = dict() # Inits a dict from coll. of key-value pairs. - = dict(zip(keys, values)) # Inits a dict from two collections. - = dict.fromkeys(keys [, value]) # Inits a dict from collection of keys. + = dict() # Creates a dict from coll. of key-value pairs. + = dict(zip(keys, values)) # Creates a dict from two collections. + = dict.fromkeys(keys [, value]) # Creates a dict from collection of keys. ``` ```python