Fix dict documentation in configuring.asciidoc

This commit is contained in:
Florian Bruhin 2017-09-16 14:20:48 +02:00
parent 714c18db0e
commit 800464d311

View File

@ -77,7 +77,7 @@ accepted values depend on the type of the option. Commonly used are:
- Booleans: `c.completion.shrink = True` - Booleans: `c.completion.shrink = True`
- Integers: `c.messages.timeout = 5000` - Integers: `c.messages.timeout = 5000`
- Dictionaries: - Dictionaries:
* `c.headers.custom['X-Hello'] = 'World'` to override any other values in the * `c.headers.custom = {'X-Hello': 'World'}` to override any other values in the
dictionary. dictionary.
* `c.aliases['foo'] = ':message-info foo'` to add a single value. * `c.aliases['foo'] = ':message-info foo'` to add a single value.
- Lists: - Lists: