Skip to content

Commit fdba1e1

Browse files
committed
edits
1 parent f6094e1 commit fdba1e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/debugger/navigating-through-code-with-the-debugger.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The Visual Studio debugger can help you navigate through code to inspect the sta
2222

2323
## Get into "break mode"
2424

25-
In *break mode*, app execution is suspended while functions, variables, and objects remain in memory. Once the debugger is in break mode, you can navigate through your code. The typical ways to get into break mode quickly is to either:
25+
In *break mode*, app execution is suspended while functions, variables, and objects remain in memory. Once the debugger is in break mode, you can navigate through your code. The most common ways to get into break mode quickly is to either:
2626

2727
- Begin code stepping by pressing **F10** or **F11**. This allows you to quickly find the entry point of your app, then you can continue pressing step commands to navigate code.
2828

@@ -68,7 +68,7 @@ On a nested function call, **Step Into** steps into the most deeply nested funct
6868
6969
### <a name="BKMK_Step_over_Step_out"></a> Step through code and skip some functions
7070

71-
You may not care about a function while debugging, or you know it works, like well-tested library code. You can use the following commands to skip through code. The functions still execute, but the debugger skips over them.
71+
You may not care about a function while debugging, or you know it works, like well-tested library code. You can use the following commands to skip code while code stepping. The functions still execute, but the debugger skips over them.
7272

7373
|Keyboard command|Debug menu command|Description|
7474
|----------------------|------------------|-----------------|

0 commit comments

Comments
 (0)