From 83ff718a24701ad0f4ed2571c3a701d9c3c96226 2024-03-07 10:45:12 From: M Bussonnier Date: 2024-03-07 10:45:12 Subject: [PATCH] Fix small typo: imput -> input (#14363) --- diff --git a/IPython/core/magics/execution.py b/IPython/core/magics/execution.py index 4147dac..f3688f4 100644 --- a/IPython/core/magics/execution.py +++ b/IPython/core/magics/execution.py @@ -1506,7 +1506,7 @@ class ExecutionMagics(Magics): @line_cell_magic def code_wrap(self, line, cell=None): """ - Simple magic to quickly define a code transformer for all IPython's future imput. + Simple magic to quickly define a code transformer for all IPython's future input. ``__code__`` and ``__ret__`` are special variable that represent the code to run and the value of the last expression of ``__code__`` respectively.