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/tokens.py | |
parent | 745df4576efca44b226bcdca33f718a5fa670eab (diff) | |
download | sqlparse-typo.tar.gz |
Fix typostypo
Diffstat (limited to 'sqlparse/tokens.py')
-rw-r--r-- | sqlparse/tokens.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sqlparse/tokens.py b/sqlparse/tokens.py index 6864f69..efc1e09 100644 --- a/sqlparse/tokens.py +++ b/sqlparse/tokens.py @@ -25,7 +25,7 @@ class _TokenType(tuple): return new def __repr__(self): - # self can be False only if its the `root` ie. Token itself + # self can be False only if its the `root` i.e. Token itself return 'Token' + ('.' if self else '') + '.'.join(self) @@ -55,7 +55,7 @@ Assignment = Token.Assignment # Generic types for non-source code Generic = Token.Generic -# String and some others are not direct childs of Token. +# String and some others are not direct children of Token. # alias them: Token.Token = Token Token.String = String |