summaryrefslogtreecommitdiffstats
path: root/litecli/packages/completion_engine.py
diff options
context:
space:
mode:
Diffstat (limited to 'litecli/packages/completion_engine.py')
-rw-r--r--litecli/packages/completion_engine.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/litecli/packages/completion_engine.py b/litecli/packages/completion_engine.py
index 0e2a30f..31a32b7 100644
--- a/litecli/packages/completion_engine.py
+++ b/litecli/packages/completion_engine.py
@@ -210,7 +210,7 @@ def suggest_based_on_last_token(token, text_before_cursor, full_text, identifier
# suggest columns that are present in more than one table
return [{"type": "column", "tables": tables, "drop_unique": True}]
elif p.token_first().value.lower() == "select":
- # If the lparen is preceeded by a space chances are we're about to
+ # If the lparen is preceded by a space chances are we're about to
# do a sub-select.
if last_word(text_before_cursor, "all_punctuations").startswith("("):
return [{"type": "keyword"}]