summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Gates <tim.gates@iress.com>2022-07-03 19:55:37 +1000
committerTim Gates <tim.gates@iress.com>2022-07-03 19:55:37 +1000
commit5b46fc8d86b2b3e3ae394b8790a8b8fad671dca2 (patch)
tree00cdc3164c2f32ac74e658738d308b421263f012
parent1484ba9548208274d689173695ffe63a7b569254 (diff)
docs: Fix a few typos
There are small typos in: - litecli/completion_refresher.py Fixes: - Should read `populate` rather than `popoulate`. - Should read `naturally` rather than `natually`.
-rw-r--r--litecli/completion_refresher.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/litecli/completion_refresher.py b/litecli/completion_refresher.py
index 9602070..91ea515 100644
--- a/litecli/completion_refresher.py
+++ b/litecli/completion_refresher.py
@@ -65,7 +65,7 @@ class CompletionRefresher(object):
# if DB is memory, needed to use same connection
executor = sqlexecute
else:
- # Create a new sqlexecute method to popoulate the completions.
+ # Create a new sqlexecute method to populate the completions.
executor = SQLExecute(e.dbname)
# If callbacks is a single function then push it into a list.
@@ -79,7 +79,7 @@ class CompletionRefresher(object):
self._restart_refresh.clear()
break
else:
- # Break out of while loop if the for loop finishes natually
+ # Break out of while loop if the for loop finishes naturally
# without hitting the break statement.
break