aboutsummaryrefslogtreecommitdiff
path: root/gdb/doc/python.texi
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/doc/python.texi')
-rw-r--r--gdb/doc/python.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/doc/python.texi b/gdb/doc/python.texi
index 69755e9..02cb9ad 100644
--- a/gdb/doc/python.texi
+++ b/gdb/doc/python.texi
@@ -732,7 +732,7 @@ prompt) is translated to a Python @code{KeyboardInterrupt} exception.
In all cases, your exception handler will see the @value{GDBN} error
message as its value and the Python call stack backtrace at the Python
-statement closest to where the @value{GDBN} error occured as the
+statement closest to where the @value{GDBN} error occurred as the
traceback.
@@ -4074,7 +4074,7 @@ available.
A boolean indicating whether the instruction was executed speculatively.
@end defvar
-If an error occured during recording or decoding a recording, this error is
+If an error occurred during recording or decoding a recording, this error is
represented by a @code{gdb.RecordGap} object in the instruction list. It has
the following attributes:
@@ -5423,7 +5423,7 @@ versions. Using it, you could write:
reason = gdb.selected_frame().unwind_stop_reason ()
reason_str = gdb.frame_stop_reason_string (reason)
if reason >= gdb.FRAME_UNWIND_FIRST_ERROR:
- print ("An error occured: %s" % reason_str)
+ print ("An error occurred: %s" % reason_str)
@end smallexample
@end table