Fix Documentation for list_re, list_re_group, first_matching_cmp, transliterate.

Fixes #1339296 [Fix documentation for some formatter functions.](https://bugs.launchpad.net/calibre/+bug/1339296)
This commit is contained in:
Eli Schwartz 2014-07-08 15:12:11 -04:00 committed by Kovid Goyal
parent feec1eb77d
commit 4b20fbbf10
2 changed files with 12 additions and 12 deletions

View File

@ -1219,7 +1219,7 @@ class BuiltinListReGroup(BuiltinFormatterFunction):
name = 'list_re_group'
arg_count = -1
category = 'List manipulation'
__doc__ = doc = _('list_re(src_list, separator, include_re, search_re, group_1_template, ...) -- '
__doc__ = doc = _('list_re_group(src_list, separator, include_re, search_re, group_1_template, ...) -- '
'Like list_re except replacements are not optional. It '
'uses re_group(list_item, search_re, group_1_template, ...) when '
'doing the replacements on the resulting list.')