diff --git a/IPython/kernel/adapter.py b/IPython/kernel/adapter.py index 1a87692..58a2649 100644 --- a/IPython/kernel/adapter.py +++ b/IPython/kernel/adapter.py @@ -13,7 +13,7 @@ def code_to_line(code, cursor_pos): """Turn a multiline code block and cursor position into a single line and new cursor position. - For adapting complete_ and object_info_requests. + For adapting ``complete_`` and ``object_info_request``. """ for line in code.splitlines(True): n = len(line) diff --git a/docs/source/development/execution.rst b/docs/source/development/execution.rst index 8350c04..229190d 100644 --- a/docs/source/development/execution.rst +++ b/docs/source/development/execution.rst @@ -14,7 +14,7 @@ The execution of use code consists of the following phases: .. seealso:: - :doc:`config/callbacks` + :doc:`/config/callbacks` To understand how the ``code`` field is executed, one must know that Python