Skip to content

Commit 60af8d2

Browse files
authored
Merge pull request #4165 from mrlacey/patch-19
correctly refer to "using directives"
2 parents 2143f34 + f2e9759 commit 60af8d2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/extensibility/extending-the-properties-task-list-output-and-options-windows.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ You can access any tool window in Visual Studio. This walkthrough shows how to i
5555

5656
### Customize the constructor
5757

58-
1. In the *TodoWindowControl.xaml.cs* file, add the following using statement:
58+
1. In the *TodoWindowControl.xaml.cs* file, add the following using directive:
5959

6060
```csharp
6161
using System;
@@ -97,7 +97,7 @@ You can access any tool window in Visual Studio. This walkthrough shows how to i
9797
}
9898
```
9999

100-
2. Add the following using statement:
100+
2. Add the following using directive:
101101

102102
```csharp
103103
using Microsoft.VisualStudio.Shell;
@@ -144,7 +144,7 @@ You can access any tool window in Visual Studio. This walkthrough shows how to i
144144

145145
![Properties Window](../extensibility/media/t5properties.png "T5Properties")
146146

147-
2. Add the following using statements the *TodoItem.cs* file.
147+
2. Add the following using directives the *TodoItem.cs* file.
148148

149149
```csharp
150150
using System.ComponentModel;
@@ -277,7 +277,7 @@ You can access any tool window in Visual Studio. This walkthrough shows how to i
277277
}
278278
```
279279

280-
4. Add the following using statements to *TodoWindowControl.xaml.cs*:
280+
4. Add the following using directives to *TodoWindowControl.xaml.cs*:
281281

282282
```csharp
283283
using System.Runtime.InteropServices;

0 commit comments

Comments
 (0)