Skip to content

Commit ad57ba4

Browse files
committed
link updates
1 parent 1ccb1c2 commit ad57ba4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/debugger/getting-started-with-the-debugger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ms.workload:
1919
---
2020
# Tutorial: Learn to debug using Visual Studio
2121

22-
This article introduces the features of the Visual Studio debugger in a step-by-step walkthrough. If you want a higher-level view of the debugger features, see [Debugger Feature Tour](../debugger/debugger-feature-tour.md). When you *debug your app*, it usually means that you are running your application with the debugger attached. When you do this, the debugger provides many ways to see what your code is doing while it runs. You can step through your code and look at the values stored in variables, you can set watches on variables to see when values change, you can examine the execution path of your code, see whether a branch of code is running, and so on. If this is the first time that you've tried to debug code, you may want to read [Debugging for absolute beginners](../debugger/debugging-absolute-beginners.md) before going through this article.
22+
This article introduces the features of the Visual Studio debugger in a step-by-step walkthrough. When you *debug your app*, it usually means that you are running your application with the debugger attached. When you do this, the debugger provides many ways to see what your code is doing while it runs. You can step through your code and look at the values stored in variables, you can set watches on variables to see when values change, you can examine the execution path of your code, see whether a branch of code is running, and so on. If this is the first time that you've tried to debug code, you may want to read [Debugging for absolute beginners](../debugger/debugging-absolute-beginners.md) and [Fix bugs by writing better C# code](../debugger/write-better-code-with-visual-studio.md) before going through this article.
2323

2424
| | |
2525
|---------|---------|

docs/debugger/what-is-debugging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ The debugger is an essential tool to find and fix bugs in your apps. However, co
4646
In this article, you've learned a few general debugging concepts. Next, you can start learning how to debug with Visual Studio and how to write code with less bugs. The following article shows C# code examples, but the concepts apply to all languages supported by Visual Studio.
4747

4848
> [!div class="nextstepaction"]
49-
> [Write better C# code using Visual Studio](../debugger/write-better-code-with-visual-studio.md)
49+
> [Fix bugs by writing better C# code](../debugger/write-better-code-with-visual-studio.md)

0 commit comments

Comments
 (0)