From: Eli Bendersky Date: Sat, 6 Aug 2011 06:31:09 +0000 (+0300) Subject: Fix grammar X-Git-Tag: v3.2.2rc1~22 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ebd4805df0483dbedf40f5a79333d2791adb4d28;p=thirdparty%2FPython%2Fcpython.git Fix grammar --- diff --git a/Doc/library/string.rst b/Doc/library/string.rst index d45eb3692390..3f9ec0b78601 100644 --- a/Doc/library/string.rst +++ b/Doc/library/string.rst @@ -709,9 +709,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