Skip to content

Commit 808e0c1

Browse files
authored
correctly refer to "using directives"
Address incorrect use of ["using statement"](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/using-statement) to refer to a ["using directive"](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/using-directive).
1 parent e723101 commit 808e0c1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/extensibility/walkthrough-using-a-shell-command-with-an-editor-extension.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ From a VSPackage, you can add features such as menu commands to the editor. This
9393

9494
9. WindowsBase
9595

96-
3. Add the following `using` statement.
96+
3. Add the following `using` directive.
9797

9898
```csharp
9999
using Microsoft.VisualStudio.Text;
@@ -129,7 +129,7 @@ From a VSPackage, you can add features such as menu commands to the editor. This
129129

130130
1. Create a class in the CommentAdornmentTest project, and name it `CommentBlock`.
131131

132-
2. Add the following `using` statements.
132+
2. Add the following `using` directives.
133133

134134
```csharp
135135
using Microsoft.VisualStudio.Text;
@@ -253,7 +253,7 @@ From a VSPackage, you can add features such as menu commands to the editor. This
253253

254254
1. Add a class file to the CommentAdornmentTest project and name it `Connector`.
255255

256-
2. Add the following `using` statements.
256+
2. Add the following `using` directives.
257257

258258
```csharp
259259
using System.ComponentModel.Composition;
@@ -317,7 +317,7 @@ From a VSPackage, you can add features such as menu commands to the editor. This
317317

318318
1. Add a new class file to the CommentAdornmentTest project and name it `CommentAdornmentProvider`.
319319

320-
2. Add the following `using` statements.
320+
2. Add the following `using` directives.
321321

322322
```csharp
323323
using System;
@@ -481,7 +481,7 @@ From a VSPackage, you can add features such as menu commands to the editor. This
481481

482482
1. Add a class file to the CommentAdornmentTest project and name it `CommentAdornmentManager`.
483483

484-
2. Add the following `using` statements.
484+
2. Add the following `using` directives.
485485

486486
```csharp
487487
using System;
@@ -606,7 +606,7 @@ From a VSPackage, you can add features such as menu commands to the editor. This
606606

607607
- Microsoft.VisualStudio.Text.UI.Wpf
608608

609-
2. Open the *AddAdornment.cs* file and add the following `using` statements.
609+
2. Open the *AddAdornment.cs* file and add the following `using` directives.
610610

611611
```csharp
612612
using Microsoft.VisualStudio.TextManager.Interop;

0 commit comments

Comments
 (0)