]> granicus.if.org Git - python/commitdiff
#9582 - add a missing "are" and reflow the line.
authorBrian Curtin <brian.curtin@gmail.com>
Thu, 23 Sep 2010 13:45:21 +0000 (13:45 +0000)
committerBrian Curtin <brian.curtin@gmail.com>
Thu, 23 Sep 2010 13:45:21 +0000 (13:45 +0000)
Doc/faq/programming.rst

index 41136646bb2a9cbe54e9e46df1809eb33e2e42fd..dff6074e903c9ac4ce735938b5f8b721f99a6905 100644 (file)
@@ -988,8 +988,8 @@ and then convert decimal strings to numeric values using :func:`int` or
 :func:`float`.  ``split()`` supports an optional "sep" parameter which is useful
 if the line uses something other than whitespace as a separator.
 
-For more complicated input parsing, regular expressions more powerful than C's
-:cfunc:`sscanf` and better suited for the task.
+For more complicated input parsing, regular expressions are more powerful
+than C's :cfunc:`sscanf` and better suited for the task.
 
 
 What does 'UnicodeDecodeError' or 'UnicodeEncodeError' error  mean?