diff --git a/IPython/core/magic.py b/IPython/core/magic.py index 63b6bec..b41a651 100644 --- a/IPython/core/magic.py +++ b/IPython/core/magic.py @@ -319,7 +319,7 @@ class MagicsManager(Configurable): For example:: - c.MagicsManger.lazy_magics = { + c.MagicsManager.lazy_magics = { "my_magic": "slow.to.import", "my_other_magic": "also.slow", } diff --git a/docs/source/whatsnew/version7.rst b/docs/source/whatsnew/version7.rst index 4ea6c41..1bd58a8 100644 --- a/docs/source/whatsnew/version7.rst +++ b/docs/source/whatsnew/version7.rst @@ -24,7 +24,7 @@ The ability to configure magics to be lazily loaded has been added to IPython. See the ``ipython --help-all`` section on ``MagicsManager.lazy_magic``. One can now use:: - c.MagicsManger.lazy_magics = { + c.MagicsManager.lazy_magics = { "my_magic": "slow.to.import", "my_other_magic": "also.slow", }