Skip to content

Commit 4f912bb

Browse files
authored
Merge pull request #4169 from mrlacey/patch-22
correctly refer to "using directives"
2 parents cd6a33d + 1dafba0 commit 4f912bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/extensibility/how-to-provide-an-asynchronous-visual-studio-service.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ If you want to obtain a service without blocking the UI thread, you should creat
3636

3737
5. The following example shows a very basic implementation of the three types. The constructor of the service class must set the service provider. In this example we'll just add the service to the package code file.
3838

39-
6. Add the following using statements to the package file:
39+
6. Add the following using directives to the package file:
4040

4141
```csharp
4242
using System.Threading;
@@ -197,7 +197,7 @@ public sealed class TestAsyncPackage : AsyncPackage
197197

198198
4. In the *TestAsyncCommand.cs* file, find the `MenuItemCallback()` method. Delete the body of the method.
199199

200-
5. Add a using statement:
200+
5. Add a using directive:
201201

202202
```csharp
203203
using System.IO;

0 commit comments

Comments
 (0)