diff options
author | Victor Uriarte <victor.m.uriarte@intel.com> | 2017-11-29 09:56:06 -0700 |
---|---|---|
committer | Victor Uriarte <victor.m.uriarte@intel.com> | 2017-11-29 14:52:15 -0700 |
commit | 43478c60394e09246ee6275f89ae434e429cc5b5 (patch) | |
tree | 07c7cf589827d53212e38f54cc84bc88d56a1b5d /sqlparse/engine/grouping.py | |
parent | 745df4576efca44b226bcdca33f718a5fa670eab (diff) | |
download | sqlparse-typo.tar.gz |
Fix typostypo
Diffstat (limited to 'sqlparse/engine/grouping.py')
-rw-r--r-- | sqlparse/engine/grouping.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sqlparse/engine/grouping.py b/sqlparse/engine/grouping.py index fa87c9f..5078389 100644 --- a/sqlparse/engine/grouping.py +++ b/sqlparse/engine/grouping.py @@ -28,8 +28,8 @@ def _group_matching(tlist, cls): continue if token.is_group and not isinstance(token, cls): - # Check inside previously grouped (ie. parenthesis) if group - # of differnt type is inside (ie, case). though ideally should + # Check inside previously grouped (i.e. parenthesis) if group + # of different type is inside (i.e., case). though ideally should # should check for all open/close tokens at once to avoid recursion _group_matching(token, cls) continue @@ -365,7 +365,7 @@ def _group(tlist, cls, match, extend=True, recurse=True ): - """Groups together tokens that are joined by a middle token. ie. x < y""" + """Groups together tokens that are joined by a middle token. i.e. x < y""" tidx_offset = 0 pidx, prev_ = None, None |