From c365d5102d577f75ded01a3d01009e94047cb258 2022-03-10 07:45:16 From: Matthias Bussonnier Date: 2022-03-10 07:45:16 Subject: [PATCH] Typo Manger -> Manager --- diff --git a/IPython/core/magic.py b/IPython/core/magic.py index 79983df..cedba61 100644 --- a/IPython/core/magic.py +++ b/IPython/core/magic.py @@ -311,7 +311,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 331db65..4dea95d 100644 --- a/docs/source/whatsnew/version7.rst +++ b/docs/source/whatsnew/version7.rst @@ -17,7 +17,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", }