diff options
author | Simon Marchi <simon.marchi@ericsson.com> | 2017-01-24 15:29:14 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2017-01-24 15:29:14 -0500 |
commit | 373832b6db219ee80cb0263c8b3788954f4e3a8b (patch) | |
tree | 56b9d2ad394d7557f7eae751d4d614dbcc3c5d42 /gdb | |
parent | 666c6aff6beaea9a5724ccc8079559a2c67a5113 (diff) | |
download | gdb-373832b6db219ee80cb0263c8b3788954f4e3a8b.zip gdb-373832b6db219ee80cb0263c8b3788954f4e3a8b.tar.gz gdb-373832b6db219ee80cb0263c8b3788954f4e3a8b.tar.bz2 |
Fix typo in ExitedEvent doc
The field "inferior" of the ExitedEvent object is not displayed
properly.
gdb/doc/ChangeLog:
* python.texi (Events In Python): Fix typo.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/doc/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/doc/python.texi | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 4d69e36..a47c4f5 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,7 @@ +2017-01-24 Simon Marchi <simon.marchi@ericsson.com> + + * python.texi (Events In Python): Fix typo. + 2017-01-20 Mike Wrighton <mike_wrighton@codesourcery.com> Luis Machado <lgustavo@codesourcery.com> diff --git a/gdb/doc/python.texi b/gdb/doc/python.texi index 8458c6e..fae45aa 100644 --- a/gdb/doc/python.texi +++ b/gdb/doc/python.texi @@ -2858,7 +2858,7 @@ has returned. (The exit code could be unavailable if, for example, @value{GDBN} detaches from the inferior.) If the exit code is unavailable, the attribute does not exist. @end defvar -@defvar ExitedEvent inferior +@defvar ExitedEvent.inferior A reference to the inferior which triggered the @code{exited} event. @end defvar |