Skip to content

Commit cd6a33d

Browse files
authored
Merge pull request #4185 from mrlacey/patch-38
correctly refer to "using directives"
2 parents fdfb3e3 + cd192fa commit cd6a33d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/extensibility/walkthrough-using-a-shortcut-key-with-an-editor-extension.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Prior to Visual Studio 2017 version 15.6 the only way to handle commands in an e
5757

5858
1. Add a class file and name it `KeyBindingCommandFilter`.
5959

60-
2. Add the following using statements.
60+
2. Add the following using directives.
6161

6262
```csharp
6363
using System;
@@ -129,7 +129,7 @@ Prior to Visual Studio 2017 version 15.6 the only way to handle commands in an e
129129
## Add the command filter (prior to Visual Studio 2017 version 15.6)
130130
The adornment provider must add a command filter to the text view. In this example, the provider implements <xref:Microsoft.VisualStudio.Editor.IVsTextViewCreationListener> to listen to text view creation events. This adornment provider also exports the adornment layer, which defines the Z-order of the adornment.
131131

132-
1. In the KeyBindingTestTextViewCreationListener file, add the following using statements:
132+
1. In the KeyBindingTestTextViewCreationListener file, add the following using directives:
133133

134134
```csharp
135135
using System;
@@ -197,7 +197,7 @@ The command handler is an implementation of <xref:Microsoft.VisualStudio.Command
197197

198198
1. Add a class file and name it `KeyBindingCommandHandler`.
199199

200-
2. Add the following using statements.
200+
2. Add the following using directives.
201201

202202
```csharp
203203
using Microsoft.VisualStudio.Commanding;

0 commit comments

Comments
 (0)