From: Tom Tromey Date: Sat, 8 Sep 2018 19:40:50 +0000 (-0600) Subject: Small typo fix in Basic Python node X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0d2a583976a87221d11c2639ede8f764e0c26059;p=binutils-gdb.git Small typo fix in Basic Python node I noticed that the decode_line documentation did not have parens around the argument: -- Function: gdb.decode_line [expression] This patch fixes this oversight. gdb/doc/ChangeLog 2018-09-10 Tom Tromey * python.texi (Basic Python): Parenthesize argument to decode_line. --- diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index c83b5f5d804..642bc54f66b 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,8 @@ +2018-09-10 Tom Tromey + + * python.texi (Basic Python): Parenthesize argument to + decode_line. + 2018-09-10 Tom Tromey * python.texi (Python): Mention Python versions. Don't mention diff --git a/gdb/doc/python.texi b/gdb/doc/python.texi index eb4c3a53781..6eccc2b1154 100644 --- a/gdb/doc/python.texi +++ b/gdb/doc/python.texi @@ -448,7 +448,7 @@ as a string, or @code{None}. @end defun @findex gdb.decode_line -@defun gdb.decode_line @r{[}expression@r{]} +@defun gdb.decode_line (@r{[}expression@r{]}) Return locations of the line specified by @var{expression}, or of the current line if no argument was given. This function returns a Python tuple containing two elements. The first element contains a string