Skip to content

Commit cfbc84c

Browse files
committed
Update README.md
1 parent aa81fde commit cfbc84c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ When you create `KeyValues` instance from VDF file you can specify these optiona
2727

2828
* `encoding=""` - input VDF file encoding. Default: `utf-8`
2929
* `mapper_type=` - mapper type for storing KeyValues. It must have the `dict` interface, i.e. allow to do `mapper[key] = value` operations. For example you can use the `dict` type. **Instance's attribute**. Default: `collections.OrderedDict` (stores the keys in the order they have been added)
30-
* `key_modifier=` - functions for modifying the key before its additions. For example `key_modifier=str.lower` will make all the keys to be lowercase. **Instance's attribute**. Default: `None`
30+
* `key_modifier=` - function for modifying the key before its addition. For example `key_modifier=str.lower` will make all the keys to be lowercase. **Instance's attribute**. Default: `None`
3131

3232
To create `KeyValues` instance **from your own object with `dict` interface**:
3333

0 commit comments

Comments
 (0)