From 177ba80b8a76041b629cc57b59cab51f68a2567b Mon Sep 17 00:00:00 2001 From: Joel Gerber Date: Fri, 9 Jun 2017 11:04:43 -0400 Subject: [PATCH] Reword sentence regarding bounding parentheses. --- xonsh/parsers/base.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/xonsh/parsers/base.py b/xonsh/parsers/base.py index fe4f711ac..897f83a68 100644 --- a/xonsh/parsers/base.py +++ b/xonsh/parsers/base.py @@ -2097,11 +2097,11 @@ class BaseParser(object): # The following grammar rules are no-ops because we don't need to glue the # source code back together piece-by-piece. Instead, we simply look for - # top-level commas and record their positions. With these positions and - # the bounding parenthesis !() positions we can use the source_slice() - # method. This does a much better job of capturing exactly the source code - # that was provided. The tokenizer & lexer can be a little lossy, especially - # with respect to whitespace. + # top-level commas and record their positions. With these positions and the + # respective positions of the bounding parentheses, we can use the + # source_slice() method. This does a much better job of capturing exactly + # the source code that was provided. The tokenizer & lexer can be a little + # lossy, especially with respect to whitespace. def p_nocomma_tok(self, p): # see attachment function above for docstring