summaryrefslogtreecommitdiffstats
path: root/contrib/python/ipython/py3/IPython/core/completerlib.py
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/python/ipython/py3/IPython/core/completerlib.py')
-rw-r--r--contrib/python/ipython/py3/IPython/core/completerlib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/python/ipython/py3/IPython/core/completerlib.py b/contrib/python/ipython/py3/IPython/core/completerlib.py
index 05f39e50159..4612b326ded 100644
--- a/contrib/python/ipython/py3/IPython/core/completerlib.py
+++ b/contrib/python/ipython/py3/IPython/core/completerlib.py
@@ -214,7 +214,7 @@ def is_possible_submodule(module, attr):
try:
obj = getattr(module, attr)
except AttributeError:
- # Is possilby an unimported submodule
+ # Is possibly an unimported submodule
return True
except TypeError:
# https://github.com/ipython/ipython/issues/9678