Skip to content

Commit 0f0f5b8

Browse files
authored
Merge pull request #4184 from mrlacey/patch-37
correctly refer to "using directives"
2 parents 4f912bb + 478c97f commit 0f0f5b8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/extensibility/internals/walkthrough-creating-a-legacy-language-service.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Using the managed package framework (MPF) language classes to implement a langua
6464

6565
You can use whatever name you want. These procedures detailed here assume `MyLanguageService` as the name.
6666

67-
6. In the MyLanguageService.cs file, add the following `using` statements.
67+
6. In the MyLanguageService.cs file, add the following `using` directives.
6868

6969
[!code-csharp[CreatingALanguageService(ManagedPackageFramework)#1](../../extensibility/internals/codesnippet/CSharp/walkthrough-creating-a-legacy-language-service_1.cs)]
7070
[!code-vb[CreatingALanguageService(ManagedPackageFramework)#1](../../extensibility/internals/codesnippet/VisualBasic/walkthrough-creating-a-legacy-language-service_1.vb)]
@@ -80,7 +80,7 @@ Using the managed package framework (MPF) language classes to implement a langua
8080

8181
### Register the Language Service
8282

83-
1. Open the MyLanguagePackagePackage.cs file and add the following `using` statements:
83+
1. Open the MyLanguagePackagePackage.cs file and add the following `using` directives:
8484

8585
[!code-vb[CreatingALanguageService(ManagedPackageFramework)#3](../../extensibility/internals/codesnippet/VisualBasic/walkthrough-creating-a-legacy-language-service_3.vb)]
8686
[!code-csharp[CreatingALanguageService(ManagedPackageFramework)#3](../../extensibility/internals/codesnippet/CSharp/walkthrough-creating-a-legacy-language-service_3.cs)]
@@ -104,7 +104,7 @@ Using the managed package framework (MPF) language classes to implement a langua
104104

105105
Enter a suitable name for the class file and click **Add**.
106106

107-
3. In the new class file, add the following `using` statements.
107+
3. In the new class file, add the following `using` directives.
108108

109109
[!code-csharp[CreatingALanguageService(ManagedPackageFramework)#4](../../extensibility/internals/codesnippet/CSharp/walkthrough-creating-a-legacy-language-service_4.cs)]
110110
[!code-vb[CreatingALanguageService(ManagedPackageFramework)#4](../../extensibility/internals/codesnippet/VisualBasic/walkthrough-creating-a-legacy-language-service_4.vb)]
@@ -125,4 +125,4 @@ Using the managed package framework (MPF) language classes to implement a langua
125125
For example, type `public override` to see a list of all methods that can be overridden in that class.
126126

127127
## See Also
128-
- [Implementing a Legacy Language Service](../../extensibility/internals/implementing-a-legacy-language-service1.md)
128+
- [Implementing a Legacy Language Service](../../extensibility/internals/implementing-a-legacy-language-service1.md)

0 commit comments

Comments
 (0)