Skip to content

Commit d10a11a

Browse files
committed
tweaks
1 parent ab7a97b commit d10a11a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

docs/debugger/toc.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
href: navigating-through-code-with-the-debugger.md
4343
- name: Get started with breakpoints
4444
href: get-started-with-breakpoints.md
45-
- name: Using the right type of breakpoint
45+
- name: Use the right type of breakpoint
4646
href: using-breakpoints.md
4747
- name: Move the execution pointer
4848
href: move-the-execution-pointer-with-the-debugger.md
@@ -58,6 +58,8 @@
5858
href: autos-and-locals-windows.md
5959
- name: Set a watch on variables
6060
href: watch-and-quickwatch-windows.md
61+
- name: View data values in data tips
62+
href: view-data-values-in-data-tips-in-the-code-editor.md
6163
- name: Expressions in the debugger
6264
items:
6365
- name: Use debugger expressions
@@ -70,8 +72,6 @@
7072
href: format-specifiers-in-csharp.md
7173
- name: Pseudovariables
7274
href: pseudovariables.md
73-
- name: View data values in DataTips
74-
href: view-data-values-in-data-tips-in-the-code-editor.md
7575
- name: View string values in a visualizer
7676
href: view-strings-visualizer.md
7777
- name: View .NET collections in a tabular visualizer

docs/debugger/view-data-values-in-data-tips-in-the-code-editor.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ ms.subservice: debug-diagnostics
2020
#customer intent: As a developer, I want to use data tips in the Visual Studio Code editor, so I can view and change variable values when I debug my code.
2121
---
2222

23-
# View and change variable values with DataTips in the code editor
23+
# View and change variable values with data tips in the code editor
2424

25-
This article explores how to work with the DataTips feature in Visual Studio. Data tips provide a convenient way to view information about variables in your program while you debug your code. When you set breakpoints in your code and start debugging, data tips are visible for variables as they enter the current scope of execution. You can use the data tip to change the value for a variable in scope, and rerun the code over the breakpoint to see the effect of the change.
25+
This article explores how to work with the data tips feature in Visual Studio. Data tips provide a convenient way to view information about variables in your program while you debug your code. When you set breakpoints in your code and start debugging, data tips are visible for variables as they enter the current scope of execution. You can use the data tip to change the value for a variable in scope, and rerun the code over the breakpoint to see the effect of the change.
2626

2727
:::image type="content" source="../debugger/media/data-tips-examples.png" border="false" alt-text="Screenshot of a debugging session in Visual Studio with examples of data tips for variables in scope." lightbox="../debugger/media/data-tips-examples.png":::
2828

@@ -153,7 +153,7 @@ The following table summarizes how you can manually close data tips:
153153

154154
## Work with variables and values in data tips
155155

156-
When you work with DataTips in Visual Studio, you gain the ability to see details about variables and objects, and edit values during debugging. These capabilities are useful for quick troubleshooting and testing changes to your code.
156+
When you work with data tips in Visual Studio, you gain the ability to see details about variables and objects, and edit values during debugging. These capabilities are useful for quick troubleshooting and testing changes to your code.
157157

158158
### Expand objects in data tips to view members
159159

@@ -177,7 +177,7 @@ To expand the view for an object in a data tip, follow these steps:
177177

178178
### Edit variable values
179179

180-
Another advantage of working with DataTips is the ability to edit the value of a variable or element in a data tip during debugging. This functionality is useful for quick testing of small changes to your code.
180+
Another advantage of working with data tips is the ability to edit the value of a variable or element in a data tip during debugging. This functionality is useful for quick testing of small changes to your code.
181181

182182
To edit the value of a variable or element in a data tip, follow these steps:
183183

0 commit comments

Comments
 (0)