diff options
author | Eli Bendersky <eliben@gmail.com> | 2011-08-06 06:31:09 (GMT) |
---|---|---|
committer | Eli Bendersky <eliben@gmail.com> | 2011-08-06 06:31:09 (GMT) |
commit | ebd4805df0483dbedf40f5a79333d2791adb4d28 (patch) | |
tree | 2f7ee943717ebc2ca6f634de25f37d304d442746 /Doc/library/string.rst | |
parent | 2e0153550cc33b94b7cc94650ae9543ffd58637c (diff) | |
download | cpython-ebd4805df0483dbedf40f5a79333d2791adb4d28.zip cpython-ebd4805df0483dbedf40f5a79333d2791adb4d28.tar.gz cpython-ebd4805df0483dbedf40f5a79333d2791adb4d28.tar.bz2 |
Fix grammar
Diffstat (limited to 'Doc/library/string.rst')
-rw-r--r-- | Doc/library/string.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/string.rst b/Doc/library/string.rst index d45eb36..3f9ec0b 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 |