[lldb] Fix formatting in python-reference.rst

This commit is contained in:
Dave Lee 2022-07-24 17:31:53 -06:00
parent e49c1568b6
commit 87990fd8f4
1 changed files with 2 additions and 2 deletions

View File

@ -356,7 +356,7 @@ The custom Resolver is provided as a Python class with the following methods:
| | | symbol name, you could write a generic symbol name based Resolver, and then allow the user to pass |
| | | in the particular symbol in the extra_args |
+--------------------+---------------------------------------+------------------------------------------------------------------------------------------------------------------+
| ``__callback__`` | ``sym_ctx``:`lldb.SBSymbolContext` | This is the Resolver callback. |
| ``__callback__`` | ``sym_ctx``:`lldb.SBSymbolContext` | This is the Resolver callback. |
| | | The ``sym_ctx`` argument will be filled with the current stage |
| | | of the search. |
| | | |
@ -378,7 +378,7 @@ The custom Resolver is provided as a Python class with the following methods:
| | | So you would want to return `lldb.eSearchDepthModule`. This method is optional. If not provided the search |
| | | will be done at Module depth. |
+--------------------+---------------------------------------+------------------------------------------------------------------------------------------------------------------+
| ``get_short_help` | ``None`` | This is an optional method. If provided, the returned string will be printed at the beginning of |
| ``get_short_help`` | ``None`` | This is an optional method. If provided, the returned string will be printed at the beginning of |
| | | the description for this breakpoint. |
+--------------------+---------------------------------------+------------------------------------------------------------------------------------------------------------------+