Skip to content

Commit 0975df4

Browse files
committed
touchup
1 parent 6eab8aa commit 0975df4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/debugger/autos-and-locals-windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Set a breakpoint and start debugging. When the breakpoint is hit, execution paus
108108
The variable `e` is uninitialized, because the line `e = 5` has not yet been executed.
109109
110110
## <a name="bkmk_returnValue"></a> View return values of method calls
111-
In .NET and C++ code, you can examine return values in the **Autos** window when you step over or out of a method call. Viewing method call return values can be useful when they are not stored in local variables. For example, a method could be used as a parameter, or as the return value of another method.
111+
In .NET and C++ code, you can examine return values in the **Autos** window when you step over or out of a method call. Viewing method call return values can be useful when they are not stored in local variables. A method could be used as a parameter, or as the return value of another method.
112112
113113
For example, the following C# code adds the return values of two functions:
114114

docs/debugger/watch-and-quickwatch-windows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ public class Program
179179

180180
```
181181

182-
To find out the name of the `Person` in the `DoSomething()` method, you can add a reference to the `Person` object in the **Watch** window.
182+
To find out the name of the `Person` in the `DoSomething()` method, you can add a reference to the `Person` Object ID in the **Watch** window.
183183

184184
1. Set a breakpoint in the code after the `Person` object has been created.
185185

@@ -250,7 +250,7 @@ To observe the `a` variable,
250250

251251
1. Set a breakpoint on the `a = a + b;` line.
252252

253-
1. Start debugging. Execution stops at the breakpoint.
253+
1. Start debugging. Execution pauses at the breakpoint.
254254

255255
1. Select the variable `a` in the code.
256256

0 commit comments

Comments
 (0)