From c2ff41d234273e0ff4f3acc8c33302e58b56d1df 2022-03-10 08:08:08 From: Matthias Bussonnier Date: 2022-03-10 08:08:08 Subject: [PATCH] Backport PR #13580: Typo Manger -> Manager --- 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", }