diff options
Diffstat (limited to 'docs/source/debugger/breakpoint.rst')
-rw-r--r-- | docs/source/debugger/breakpoint.rst | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/docs/source/debugger/breakpoint.rst b/docs/source/debugger/breakpoint.rst index 1e61157c854..5dbf6c4effe 100644 --- a/docs/source/debugger/breakpoint.rst +++ b/docs/source/debugger/breakpoint.rst @@ -75,10 +75,10 @@ Back to :ref:`debugger-breakpoint-list` bpclear ------- -**bpclear [<bpnum>]** +**bpclear [<bpnum>[,…]]** -Clear breakpoints. If **<bpnum>** is specified, the breakpoint it -refers to will be cleared. If **<bpnum>** is not specified, all +Clear breakpoints. If **<bpnum>** is specified, the breakpoints +referred to will be cleared. If **<bpnum>** is not specified, all breakpoints will be cleared. Examples: @@ -96,10 +96,10 @@ Back to :ref:`debugger-breakpoint-list` bpdisable --------- -**bpdisable [<bpnum>]** +**bpdisable [<bpnum>[,…]]** -Disable breakpoints. If **<bpnum>** is specified, the breakpoint it -refers to will be disabled. If **<bpnum>** is not specified, all +Disable breakpoints. If **<bpnum>** is specified, the breakpoints +referred to will be disabled. If **<bpnum>** is not specified, all breakpoints will be disabled. Note that disabling a breakpoint does not delete it, it just temporarily @@ -122,10 +122,10 @@ Back to :ref:`debugger-breakpoint-list` bpenable -------- -**bpenable [<bpnum>]** +**bpenable [<bpnum>[,…]]** -Enable breakpoints. If **<bpnum>** is specified, the breakpoint it -refers to will be enabled. If **<bpnum>** is not specified, all +Enable breakpoints. If **<bpnum>** is specified, the breakpoint +referred to will be enabled. If **<bpnum>** is not specified, all breakpoints will be enabled. Examples: |