From: Tom Tromey Date: Thu, 14 Nov 2013 21:03:06 +0000 (-0700) Subject: fix grammar oddity in the manual X-Git-Tag: gdb-7.7-release~508 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8fe1b6533885f19680a2fbd827cb677c2e3c68ac;p=platform%2Fupstream%2Fbinutils.git fix grammar oddity in the manual This patch fixes a buglet in the manual. It's wrong to say that a method is defined "as" a subclass. Instead it should say that a method is defined "in" a subclass. I'm checking this in under the obvious rule. 2013-11-14 Tom Tromey * gdb.texinfo (Breakpoints In Python): Replace "as" with "in". --- diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 6ffdefa..0dc75cd 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,7 @@ +2013-11-14 Tom Tromey + + * gdb.texinfo (Breakpoints In Python): Replace "as" with "in". + 2013-11-14 Joel Brobecker * gdb.texinfo (Show): Add xref anchor for "show language" command. diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index a164785..c2dfa17 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -27184,7 +27184,7 @@ is assumed to be a @code{gdb.WP_WRITE} class. @defun Breakpoint.stop (self) The @code{gdb.Breakpoint} class can be sub-classed and, in particular, you may choose to implement the @code{stop} method. -If this method is defined as a sub-class of @code{gdb.Breakpoint}, +If this method is defined in a sub-class of @code{gdb.Breakpoint}, it will be called when the inferior reaches any location of a breakpoint which instantiates that sub-class. If the method returns @code{True}, the inferior will be stopped at the location of the