[Python-checkins] cpython (3.2): Fix grammar

eli.bendersky python-checkins at python.org
Sat Aug 6 08:36:47 CEST 2011


http://hg.python.org/cpython/rev/6151d7cea7fe
changeset:   71761:6151d7cea7fe
branch:      3.2
parent:      71758:87de58db3d40
user:        Eli Bendersky <eliben at gmail.com>
date:        Sat Aug 06 09:31:09 2011 +0300
summary:
  Fix grammar

files:
  Doc/library/string.rst |  6 +++---
  1 files changed, 3 insertions(+), 3 deletions(-)


diff --git a/Doc/library/string.rst b/Doc/library/string.rst
--- a/Doc/library/string.rst
+++ b/Doc/library/string.rst
@@ -709,9 +709,9 @@
 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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list