Skip to content

Commit 7aaa4ac

Browse files
committed
Line edits
1 parent c3e0e68 commit 7aaa4ac

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

learn-pr/language/dotnet-debug/includes/3-analyze-your-program-state.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ When you analyze a program defect's cause, watch your variables state to look fo
5959

6060
Your variables are shown organized by scope:
6161

62-
- **Local variables** are accessible in the current scope, usually the current function.
63-
- **Global variables** are accessible from everywhere in your program. System objects from the JavaScript runtime are also included, so don't be surprised if you see a lot of stuff in there.
64-
- **Closure variables** are accessible from the current closure, if any. A closure combines the local scope of a function with the scope from the outer function it belongs to.
62+
- **Local variables**: Accessible in the current scope, usually the current function.
63+
- **Global variables**: Accessible from everywhere in your program. System objects from the JavaScript runtime are also included, so don't be surprised if you see a lot of stuff in there.
64+
- **Closure variables**: Accessible from the current closure, if any. A closure combines the local scope of a function with the scope from the outer function it belongs to.
6565

6666
You can unfold scopes and variables by selecting the arrow. When you unfold objects, you can see all the properties defined in the object.
6767

learn-pr/language/dotnet-debug/includes/8-summary.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ In this module, you learned how to:
1111

1212
Continue learning more about .NET debugging with:
1313

14-
- [Visual Studio Code debugging](https://code.visualstudio.com/docs/editor/debugging)
14+
- [Debug code with Visual Studio Code](https://code.visualstudio.com/docs/editor/debugging)
1515
- [Working with C# in Visual Studio Code](https://code.visualstudio.com/Docs/languages/csharp)
16-
- [Tutorial: Debug a .NET Core console application using Visual Studio Code](/dotnet/core/tutorials/debugging-with-visual-studio-code)
17-
- [Tutorial: Debug a .NET Core console application using Visual Studio](/dotnet/core/tutorials/debugging-with-visual-studio)
18-
- [Tutorial: Debug a .NET Core console application using Visual Studio for Mac](/dotnet/core/tutorials/debugging-with-visual-studio-mac)
16+
- [Tutorial: Debug a .NET console application using Visual Studio Code](/dotnet/core/tutorials/debugging-with-visual-studio-code)
17+
- [Tutorial: Debug a .NET console application using Visual Studio](/dotnet/core/tutorials/debugging-with-visual-studio)

0 commit comments

Comments
 (0)