Skip to content

Commit 0aa8b82

Browse files
committed
[lldb][docs] Fix plaintext markers in command map
Single backticks RST tries to resolve to a reference. Double means plaintext. Fixes these warnings: map.rst:803: WARNING: 'any' reference target not found: target.prefer-dynamic-value map.rst:814: WARNING: 'any' reference target not found: expr
1 parent ab8208f commit 0aa8b82

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/docs/use/map.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -802,7 +802,7 @@ Print the dynamic type of the result of an expression
802802
803803
LLDB does this automatically if determining the dynamic type does not require
804804
running the target (in C++, running the target is never needed). This default is
805-
controlled by the `target.prefer-dynamic-value` setting. If that is disabled, it
805+
controlled by the ``target.prefer-dynamic-value`` setting. If that is disabled, it
806806
can be re-enabled on a per-command basis:
807807
808808
.. code-block:: shell
@@ -812,7 +812,7 @@ can be re-enabled on a per-command basis:
812812
(lldb) expr -d no-run-target -- someCPPObjectPtr
813813
814814
Note that printing of the dynamic type of references is not possible with the
815-
`expr` command. The workaround is to take the address of the reference and
815+
``expr`` command. The workaround is to take the address of the reference and
816816
instruct lldb to print the children of the resulting pointer.
817817
818818
.. code-block:: shell

0 commit comments

Comments
 (0)