Skip to content

Commit 999597c

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 999597c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/extensibility/walkthrough-saving-user-settings-on-a-start-page.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ For more information about how to persist settings, see [Extending User Settings
7373

7474
This step opens *MyControl.xaml.cs*, and creates a stub handler for the `Button_Click` event.
7575

76-
2. Add the following `using` statements to the top of the file.
76+
2. Add the following `using` directives to the top of the file.
7777

7878
[!code-csharp[StartPageDTE#11](../extensibility/codesnippet/CSharp/walkthrough-saving-user-settings-on-a-start-page_1.cs)]
7979

@@ -193,4 +193,4 @@ You can modify this user control to save and retrieve any number of custom setti
193193
## See also
194194

195195
- <xref:EnvDTE80.DTE2?displayProperty=fullName>
196-
- [Adding Visual Studio commands to a Start Page](../extensibility/adding-visual-studio-commands-to-a-start-page.md)
196+
- [Adding Visual Studio commands to a Start Page](../extensibility/adding-visual-studio-commands-to-a-start-page.md)

0 commit comments

Comments
 (0)