Skip to content

Commit 2369a37

Browse files
authored
Merge pull request #1999 from johnnyagerard/patch-3
fix typo
2 parents 498aad8 + 259e2c9 commit 2369a37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/debugger/what-is-debugging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The Visual Studio debugger is a powerful tool. Before we show how to use it, we
1919

2020
## Debugger vs. debugging
2121

22-
The term *debugging* can mean a lot of different things, but most literally, it means removing bus from your code. Now, there are a lot of ways to do this. For example, you might debug by scanning your code looking for typos, or by using a code analyzer. You might debug code by using a performance profiler. Or, you might debug by using a *debugger*.
22+
The term *debugging* can mean a lot of different things, but most literally, it means removing bugs from your code. Now, there are a lot of ways to do this. For example, you might debug by scanning your code looking for typos, or by using a code analyzer. You might debug code by using a performance profiler. Or, you might debug by using a *debugger*.
2323

2424
A debugger is a very specialized developer tool that attaches to your running app and allows you to inspect your code. In the debugging documentation for Visual Studio, this is typically what we mean when we say "debugging".
2525

0 commit comments

Comments
 (0)