aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Lee <davelee.com@gmail.com>2022-07-24 17:31:53 -0600
committerDave Lee <davelee.com@gmail.com>2022-08-07 12:17:36 -0600
commit87990fd8f4ba0e87ae21c69ae0cff4921c0e2cdf (patch)
tree8c97a7cc96889c0308548e9f2222dd557c6ca2d2
parente49c1568b6160f9a02da3295ac0d5c684fb64201 (diff)
[lldb] Fix formatting in python-reference.rst
-rw-r--r--lldb/docs/use/python-reference.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/docs/use/python-reference.rst b/lldb/docs/use/python-reference.rst
index a034cd29204f..ee3db9ab56d1 100644
--- a/lldb/docs/use/python-reference.rst
+++ b/lldb/docs/use/python-reference.rst
@@ -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. |
+--------------------+---------------------------------------+------------------------------------------------------------------------------------------------------------------+