Skip to content

Commit f9a505a

Browse files
committed
Fix typo
Visual studio -> Visual Studio
1 parent a0cb945 commit f9a505a

5 files changed

+6
-6
lines changed

docs/debugger/specify-symbol-dot-pdb-and-source-files-in-the-visual-studio-debugger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ On the **Tools** > **Options** > **Debugging** > **Symbols** page, you can:
151151
::: moniker range=">= vs-2022"
152152

153153
- Select **Automatically choose what module symbols to search for** (recommended) to allow
154-
Visual studio to decide what symbols to search for and load. By default, Visual Studio
154+
Visual Studio to decide what symbols to search for and load. By default, Visual Studio
155155
automatically loads symbols that were built by your opened solution, and loads any
156156
additional symbols that are needed to perform common debugging operations. This reduces
157157
the number of files that must be searched for and loaded by Visual Studio, which

docs/extensibility/installing-the-visual-studio-sdk.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ To install the Visual Studio SDK after completing your Visual Studio installatio
2525
If you open a solution with an extensibility project without first installing the VSSDK, you'll be prompted by an **Install Missing Feature** dialog to install the **Visual Studio extension development** workload:
2626

2727
::: moniker range="vs-2019"
28-
:::image type="content" source="media/install-extension-development.png" alt-text="Screenshot showing the Visual studio dialog to Install extension development workload.":::
28+
:::image type="content" source="media/install-extension-development.png" alt-text="Screenshot showing the Visual Studio dialog to Install extension development workload.":::
2929
::: moniker-end
3030

3131
::: moniker range=">=vs-2022"
32-
:::image type="content" source="media/vs-2022/install-extension-development.png" alt-text="Screenshot showing the Visual studio dialog to Install extension development workload.":::
32+
:::image type="content" source="media/vs-2022/install-extension-development.png" alt-text="Screenshot showing the Visual Studio dialog to Install extension development workload.":::
3333
::: moniker-end
3434

3535
## Install the Visual Studio SDK from the command line

docs/extensibility/the-experimental-instance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ To safeguard your Visual Studio development environment from untested applicatio
2020

2121
If you want to start the experimental instance of Visual Studio outside a specific solution, run the following command at the command window:
2222

23-
"*\<Visual studio installation path>*\Common7\IDE\devenv.exe" /RootSuffix Exp
23+
"*\<Visual Studio installation path>*\Common7\IDE\devenv.exe" /RootSuffix Exp
2424

2525
> [!NOTE]
2626
> The experimental instance is written to the registry under the `<version number>Exp` and `<version number>Exp_Config` nodes. For example the Visual Studio 2015 experimental registry area is

docs/extensibility/walkthrough-creating-a-view-adornment-commands-and-settings-column-guides.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1163,7 +1163,7 @@ _addGuidelineCommand =
11631163

11641164
```
11651165

1166-
You create an `OleMenuCommand`. Visual Studio uses the Microsoft Office command system. The key arguments when instantiating an `OleMenuCommand` is the function that implements the command (`AddColumnGuideExecuted`), the function to call when Visual Studio shows a menu with the command (`AddColumnGuideBeforeQueryStatus`), and the command ID. Visual studio calls the query status function before showing a command on a menu so that the command can make itself invisible or greyed out for a particular display of the menu (for example, disabling **Copy** if there's no selection), change its icon, or even change its name (for example, from Add Something to Remove Something), and so on. The command ID must match a command ID declared in the *.vsct* file. The strings for the command set and the column guides add command must match between the *.vsct* file and the *ColumnGuideCommands.cs*.
1166+
You create an `OleMenuCommand`. Visual Studio uses the Microsoft Office command system. The key arguments when instantiating an `OleMenuCommand` is the function that implements the command (`AddColumnGuideExecuted`), the function to call when Visual Studio shows a menu with the command (`AddColumnGuideBeforeQueryStatus`), and the command ID. Visual Studio calls the query status function before showing a command on a menu so that the command can make itself invisible or greyed out for a particular display of the menu (for example, disabling **Copy** if there's no selection), change its icon, or even change its name (for example, from Add Something to Remove Something), and so on. The command ID must match a command ID declared in the *.vsct* file. The strings for the command set and the column guides add command must match between the *.vsct* file and the *ColumnGuideCommands.cs*.
11671167

11681168
The following line provides assistance for when users invoke the command via the Command Window (explained below):
11691169

docs/install/update-visual-studio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ There are two ways to bring up the Update Settings dialog, which allows you to m
209209

210210
![Screenshot showing the Updates settings in the Update available dialog in the IDE.](media/vs-2022/invoke-update-settings-in-the-ide.png)
211211

212-
The **Update Settings** dialog will look something like this. In this example, the Visual studio instance is using the LTSC 17.8 channel.
212+
The **Update Settings** dialog will look something like this. In this example, the Visual Studio instance is using the LTSC 17.8 channel.
213213

214214
![Screenshot showing the Updates settings dialog in the Visual Studio 2022 IDE.](media/vs-2022/update-setting-dialog-one.png)
215215

0 commit comments

Comments
 (0)