summaryrefslogtreecommitdiff
path: root/sqlparse/tokens.py
diff options
context:
space:
mode:
Diffstat (limited to 'sqlparse/tokens.py')
-rw-r--r--sqlparse/tokens.py4
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