From: Hannes Domani Date: Tue, 24 Nov 2020 18:43:19 +0000 (+0100) Subject: Fix Value.format_string docu for static members argument X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9f1212394fa283e2748a83be8bca240710e696ca;p=binutils-gdb.git Fix Value.format_string docu for static members argument The argument is called static_members, not static_fields. gdb/doc/ChangeLog: 2020-11-29 Hannes Domani PR python/26974 * python.texi: Fix docu for static members argument. --- diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 69b079b4df0..08fb92bded8 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,8 @@ +2020-11-29 Hannes Domani + + PR python/26974 + * python.texi: Fix docu for static members argument. + 2020-11-19 Andrew Burgess * gdb.texinfo (Debugging Output): Document 'set/show debug diff --git a/gdb/doc/python.texi b/gdb/doc/python.texi index 9bb9f3c2a6b..c107d4506d6 100644 --- a/gdb/doc/python.texi +++ b/gdb/doc/python.texi @@ -921,7 +921,7 @@ identify the @emph{actual} (derived) type of the object rather than the the @emph{declared} type should be used. (See @code{set print object} in @ref{Print Settings}). -@item static_fields +@item static_members @code{True} if static members should be included in the string representation of a C@t{++} object, @code{False} if they shouldn't (see @code{set print static-members} in @ref{Print Settings}).