From 07fa9548e6925944e9aa7c803f8184ae766b80f5 Mon Sep 17 00:00:00 2001 From: Thomas Adamcik Date: Tue, 2 Apr 2013 23:35:07 +0200 Subject: [PATCH] config: Fix backticks in docstring. --- mopidy/utils/config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mopidy/utils/config.py b/mopidy/utils/config.py index 64e0d9ff..30cf873f 100644 --- a/mopidy/utils/config.py +++ b/mopidy/utils/config.py @@ -213,9 +213,9 @@ class ConfigSchema(object): """Logical group of config values that correspond to a config section. Schemas are set up by assigning config keys with config values to - instances. Once setup :meth:`convert` can be called with a list of `(key, - value)` tuples to process. For convienience we also support :meth:`format` - method that can used for printing out the converted values. + instances. Once setup :meth:`convert` can be called with a list of + ``(key, value)`` tuples to process. For convienience we also support + :meth:`format` method that can used for printing out the converted values. """ # TODO: Use collections.OrderedDict once 2.6 support is gone (#344) def __init__(self):