Skip to content

Commit 97d3d2d

Browse files
committed
changes
1 parent c294ae4 commit 97d3d2d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/debugger/using-breakpoints.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ ms.workload:
3838
- "multiple"
3939
---
4040
# Use breakpoints in the Visual Studio debugger
41-
Breakpoints are one of the most important debugging techniques in your toolbox. You set breakpoints wherever you want to pause debugger execution. For example, you may want to see the state of code variables or look at the call stack at a certain breakpoint.
41+
Breakpoints are one of the most important debugging techniques in your developer's toolbox. You set breakpoints wherever you want to pause debugger execution. For example, you may want to see the state of code variables or look at the call stack at a certain breakpoint.
4242

43-
## <a name="BKMK_Overview"></a> Set line breakpoints in source code
43+
## <a name="BKMK_Overview"></a> Set breakpoints in source code
4444
You can set a breakpoint on any line of executable code. For example, in the following C# code, you could set a breakpoint on the variable declaration, the `for` loop, or any code inside the `for` loop. You can't set a breakpoint on the namespace or class declarations, or on the method signature.
4545

46-
To set a line breakpoint in source code, click in the far left margin next to a line of code. You can also select the line and press **F9**, select **Debug** > **Toggle Breakpoint**, or right-click and select **Breakpoint** > **Insert breakpoint**. The breakpoint appears as a red dot in the left margin.
46+
To set a breakpoint in source code, click in the far left margin next to a line of code. You can also select the line and press **F9**, select **Debug** > **Toggle Breakpoint**, or right-click and select **Breakpoint** > **Insert breakpoint**. The breakpoint appears as a red dot in the left margin.
4747

4848
![Set a breakpoint](../debugger/media/basicbreakpoint.png "Basic breakpoint")
4949

@@ -278,7 +278,7 @@ Enclose string values in double quotes. You can combine clauses using `&` (AND),
278278

279279
**To set a tracepoint:**
280280

281-
1. Right-click a breakpoint and select **Actions**. Or, hover over the breakpoint, select the **Settings** icon, and then select **Actions** in the **Breakpoint Settings** window.
281+
1. Right-click a breakpoint and select **Actions**. Or, in the **Breakpoint Settings** window, hover over the breakpoint, select the **Settings** icon, and then select **Actions**.
282282

283283
1. Enter a message in the **Log a message to Output window** field. The message can include generic text strings, values of variables or expressions enclosed in curly braces, and format specifiers ([C#](../debugger/format-specifiers-in-csharp.md) and [C++](../debugger/format-specifiers-in-cpp.md)) for the values.
284284

0 commit comments

Comments
 (0)