From: Eli Bendersky Date: Sat, 6 Aug 2011 06:29:12 +0000 (+0300) Subject: Fix grammar X-Git-Tag: v2.7.3rc1~533 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e11af59e2a90934ff5472adf287d5f933301a9df;p=thirdparty%2FPython%2Fcpython.git Fix grammar --- diff --git a/Doc/library/string.rst b/Doc/library/string.rst index 59ac1163cf07..d785b7bb89f5 100644 --- a/Doc/library/string.rst +++ b/Doc/library/string.rst @@ -729,9 +729,9 @@ placeholder syntax, delimiter character, or the entire regular expression used to parse template strings. To do this, you can override these class attributes: * *delimiter* -- This is the literal string describing a placeholder introducing - delimiter. The default value ``$``. Note that this should *not* be a regular - expression, as the implementation will call :meth:`re.escape` on this string as - needed. + delimiter. The default value is ``$``. Note that this should *not* be a + regular expression, as the implementation will call :meth:`re.escape` on this + string as needed. * *idpattern* -- This is the regular expression describing the pattern for non-braced placeholders (the braces will be added automatically as