From a85099ae323dae1a5e7f0769682dfd405864d860 2015-12-18 16:52:59 From: Thomas Ballinger Date: 2015-12-18 16:52:59 Subject: [PATCH] fix docstring typo --- diff --git a/IPython/utils/frame.py b/IPython/utils/frame.py index 348cbcc..76ccc71 100644 --- a/IPython/utils/frame.py +++ b/IPython/utils/frame.py @@ -90,7 +90,7 @@ def debugx(expr,pre_msg=''): #def debugx(expr,pre_msg=''): pass def extract_module_locals(depth=0): - """Returns (module, locals) of the funciton `depth` frames away from the caller""" + """Returns (module, locals) of the function `depth` frames away from the caller""" f = sys._getframe(depth + 1) global_ns = f.f_globals module = sys.modules[global_ns['__name__']]