diff options
-rw-r--r-- | CHANGES | 2 | ||||
-rw-r--r-- | pyparsing.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1447,7 +1447,7 @@ finally time to bump the minor rev number on pyparsing - so stack (multiple indentedBlock expressions within a single grammar should share a common indentStack) - indent - boolean indicating whether block must be indented - beyond the the current level; set to False for block of + beyond the current level; set to False for block of left-most statements (default=True) A valid block must contain at least one indented statement. diff --git a/pyparsing.py b/pyparsing.py index 2a20daa..0e7b5e1 100644 --- a/pyparsing.py +++ b/pyparsing.py @@ -5829,7 +5829,7 @@ def indentedBlock(blockStatementExpr, indentStack, indent=True): (multiple statementWithIndentedBlock expressions within a single grammar should share a common indentStack) - indent - boolean indicating whether block must be indented beyond - the the current level; set to False for block of left-most + the current level; set to False for block of left-most statements (default= ``True``) A valid block must contain at least one ``blockStatement``. |