Skip to content

Commit db67fe4

Browse files
authored
Merge pull request #14022 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/visualstudio-docs (branch main)
2 parents 328a4fd + 8067e6c commit db67fe4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/install/command-line-parameter-examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ All commands require administrative elevation, and a User Account Control prompt
1818

1919
You can use the `^` character at the end of a command line to concatenate multiple lines into a single command. Alternatively, you can place these lines together onto a single row. In PowerShell, the equivalent is the backtick (`` ` ``) character.
2020

21-
To execute commands in a non-interactive manner, you can use`--passive` or `--quiet`. For more information on these parameters, see the [commands and command-line paremeters](use-command-line-parameters-to-install-visual-studio.md#install-update-modify-repair-uninstall-and-export-commands-and-command-line-parameters) page.
21+
To execute commands in a non-interactive manner, you can use`--passive` or `--quiet`. For more information on these parameters, see the [commands and command-line parameters](use-command-line-parameters-to-install-visual-studio.md#install-update-modify-repair-uninstall-and-export-commands-and-command-line-parameters) page.
2222

2323
For lists of the workloads and components that you can install by using the command line, see the [Visual Studio workload and component IDs](workload-and-component-ids.md) page.
2424

docs/install/update-a-network-installation-of-visual-studio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ When Visual Studio is initially installed on the client machine, it records the
4848

4949
::: moniker range="vs-2019"
5050

51-
With default Visual Studio 2019 functionality, once the client has installed the product, the client's update location configuration is locked and unchangable. The only way to *reliably* change the source location for updates is to uninstall and reinstall the product using the correct configuration.
51+
With default Visual Studio 2019 functionality, once the client has installed the product, the client's update location configuration is locked and unchangeable. The only way to *reliably* change the source location for updates is to uninstall and reinstall the product using the correct configuration.
5252

5353
However, if the Visual Studio client uses the latest Visual Studio 2022 Installer, then the client's source location for updates can be changed. This is useful if you want to install from one layout but have updates come from another layout. There are several ways to get the Visual Studio 2022 Installer onto a client machine. The easiest way is to use any version of Visual Studio that was shipped after June 2023, because these versions automatically contain the latest installer. Another way is to install and use the Visual Studio 2022 product. Lastly, you can [distribute the Visual Studio 2022 Installer via your Visual Studio 2019 layouts](create-a-network-installation-of-visual-studio.md#configure-the-layout-to-always-include-and-provide-the-latest-installer).
5454

docs/test/intellitest-manual/static-helper-classes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public static void AreElementsNotNull<T>(T[] value)
152152
where T : class
153153
{
154154
PexAssume.NotNull(value);
155-
// the followings prevents the exploration of all array lengths
155+
// the following prevents the exploration of all array lengths
156156
int len = PexSymbolicValue.Ignore<int>(value.Length);
157157

158158
// building up a boolean value as follows prevents exploration

docs/test/intellitest-manual/warnings-and-errors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ You can use
136136
void ParameterizedTest(int n) {
137137
int nshadow = PexSymbolicValue.Ignore(n); // IntelliTest looses track of 'n'
138138
139-
// irrevelant for MaxConditions, since nshadow is not related to input
139+
// irrelevant for MaxConditions, since nshadow is not related to input
140140
for (int i=0; i<nshadow; i++)
141141
{...}
142142
}

0 commit comments

Comments
 (0)