diff options
author | Andrew Burgess <aburgess@redhat.com> | 2025-04-22 17:32:53 +0100 |
---|---|---|
committer | Andrew Burgess <aburgess@redhat.com> | 2025-04-22 17:40:12 +0100 |
commit | 4183b1e3a2f36dd67e25dff4be642c48bf214d64 (patch) | |
tree | 23bae369b8ff357ccf9a2e52de9d64d59175b08b | |
parent | 5d4187339f9f2f338d540adbdfd174aa9f1e92ab (diff) | |
download | binutils-4183b1e3a2f36dd67e25dff4be642c48bf214d64.zip binutils-4183b1e3a2f36dd67e25dff4be642c48bf214d64.tar.gz binutils-4183b1e3a2f36dd67e25dff4be642c48bf214d64.tar.bz2 |
gdb/doc: use @samp{} in Python docs
In this review:
https://inbox.sourceware.org/gdb-patches/86sem6ase5.fsf@gnu.org
it was pointed out that I should use @samp{} around some text I was
adding to the documentation. However, the offending snippet of
documentation was something I copied from elsewhere in python.texi.
This commit fixes the original to use @samp{}.
-rw-r--r-- | gdb/doc/python.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/doc/python.texi b/gdb/doc/python.texi index 50342bb..80f4c14 100644 --- a/gdb/doc/python.texi +++ b/gdb/doc/python.texi @@ -4554,8 +4554,8 @@ registered. The help text for the new command is taken from the Python documentation string for the command's class, if there is one. If no -documentation string is provided, the default value ``This command is -not documented.'' is used. +documentation string is provided, the default value @samp{This command +is not documented.} is used. @end defun @cindex don't repeat Python command |