Skip to content

Commit 2600613

Browse files
authored
Merge pull request #2440 from Mikejo5000/mikejo-issues
minor edits
2 parents 9076039 + 1cf0c1a commit 2600613

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/debugger/debugging-absolute-beginners.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
title: "Debugging code for absolute beginners"
33
description: "If you are debugging for the first time, learn a few principles to help you run your app in debugging mode with Visual Studio"
44
ms.custom: ""
5-
ms.date: "06/18/2018"
5+
ms.date: "07/06/2018"
66
ms.technology: "vs-ide-debug"
7-
ms.topic: "conceptual"
7+
ms.topic: "tutorial"
88
helpviewer_keywords:
99
- "debugger"
1010
author: "mikejo5000"
@@ -211,8 +211,8 @@ Next, we will create an application that has a few bugs.
211211

212212
```csharp
213213
foreach (Galaxy theGalaxy in theGalaxies)
214-
{
215-
Console.WriteLine(theGalaxy.Name + " " + theGalaxy.MegaLightYears + ", " + theGalaxy.GalaxyType);
214+
{
215+
Console.WriteLine(theGalaxy.Name + " " + theGalaxy.MegaLightYears + ", " + theGalaxy.GalaxyType);
216216
}
217217
```
218218

docs/debugger/toc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
href: how-to-debug-managed-and-native-code.md
2525
- name: View snapshots using IntelliTrace step-back
2626
href: how-to-use-intellitrace-step-back.md
27+
- name: Debugging for absolute beginners
28+
href: debugging-absolute-beginners.md
2729
- name: How-to guides
2830
items:
2931
- name: Navigate through code with the debugger
@@ -824,5 +826,3 @@
824826
items:
825827
- name: What's new for the debugger in Visual Studio
826828
href: what-s-new-for-the-debugger-in-visual-studio.md
827-
- name: Debugging for absolute beginners
828-
href: debugging-absolute-beginners.md

0 commit comments

Comments
 (0)