diff options
author | 2023-09-28 10:41:31 -0400 | |
---|---|---|
committer | 2023-09-29 00:41:31 +1000 | |
commit | 30d92e397d15c32e79c9d508c43d9f2512f414fb (patch) | |
tree | 112e18522016e2fb1ef34b9d5a709d14951370e2 /docs/source/debugger/execution.rst | |
parent | 7b15eb6ef8efccb6191d5d995b2ba68bca5f4e26 (diff) |
docs: Fixed many editing errors and spelling errors. (#11575)
Also fixed outdated link to contributing guidelines.
Diffstat (limited to 'docs/source/debugger/execution.rst')
-rw-r--r-- | docs/source/debugger/execution.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/source/debugger/execution.rst b/docs/source/debugger/execution.rst index c6547c37ba2..b4de833b43f 100644 --- a/docs/source/debugger/execution.rst +++ b/docs/source/debugger/execution.rst @@ -186,7 +186,7 @@ or skip instruction is taken, following any delay slots. The optional **<condition>** parameter lets you specify an expression that will be evaluated each time a conditional branch is encountered. If the result of the expression is true (non-zero), execution will be -haltedafter the branch if it is taken; otherwise, execution will +halted after the branch if it is taken; otherwise, execution will continue with no notification. Examples: @@ -269,7 +269,7 @@ gni Resumes execution. Control will not be returned to the debugger until a breakpoint or watchpoint is triggered. A temporary unconditional breakpoint -is set at the prorgam address **<count>** instructions sequentially past the +is set at the program address **<count>** instructions sequentially past the current one. When this breakpoint is hit, it is automatically removed. The **<count>** parameter is optional and defaults to 1 if omitted. If @@ -440,7 +440,7 @@ trace Starts or stops tracing for execution of the specified **<CPU>**, or the currently visible CPU if no CPU is specified. To enable tracing, specify the trace log file name in the **<filename>** parameter. To -disable tracing, use the keyword ``off`` for for the **<filename>** +disable tracing, use the keyword ``off`` for the **<filename>** parameter. If the **<filename>** argument begins with two right angle brackets (**>>**), it is treated as a directive to open the file for appending rather than overwriting. |