@@ -55,13 +55,13 @@ public void WhenVariousParametersArePassedToInstallScripts(string parameter, str
5555
5656 var commandResult = TestUtils . CreateInstallCommand ( args ) . ExecuteInstallation ( ) ;
5757
58- // Standard 'dryrun' criterium
58+ // Standard 'dryrun' criterion
5959 commandResult . Should ( ) . Pass ( ) ;
6060 commandResult . Should ( ) . NotHaveStdOutContaining ( "dryrun" ) ;
6161 commandResult . Should ( ) . HaveStdOutContaining ( "Repeatable invocation:" ) ;
6262 commandResult . Should ( ) . HaveStdOutMatching ( @"URL\s#0\s-\s(legacy|primary|aka\.ms):\shttps://" ) ;
6363
64- // Non-dynamic input parameters should always be on the ouput line
64+ // Non-dynamic input parameters should always be on the output line
6565 commandResult . Should ( ) . HaveStdOutContainingIgnoreCase ( parameter ) ;
6666 }
6767
@@ -79,7 +79,7 @@ public void WhenRuntimeParametersArePassedToInstallScripts(string runtime, strin
7979
8080 var commandResult = TestUtils . CreateInstallCommand ( args ) . ExecuteInstallation ( ) ;
8181
82- // Standard 'dryrun' criterium
82+ // Standard 'dryrun' criterion
8383 commandResult . Should ( ) . Pass ( ) ;
8484 commandResult . Should ( ) . NotHaveStdOutContaining ( "dryrun" ) ;
8585 commandResult . Should ( ) . HaveStdOutContaining ( "Repeatable invocation:" ) ;
@@ -177,7 +177,7 @@ public void WhenChannelResolvesToASpecificRuntimeVersion(string channel, string
177177
178178 var commandResult = TestUtils . CreateInstallCommand ( args ) . ExecuteInstallation ( ) ;
179179
180- // Standard 'dryrun' criterium
180+ // Standard 'dryrun' criterion
181181 commandResult . Should ( ) . Pass ( ) ;
182182 commandResult . Should ( ) . NotHaveStdErr ( ) ;
183183 commandResult . Should ( ) . NotHaveStdOutContaining ( "dryrun" ) ;
@@ -254,7 +254,7 @@ public void WhenChannelResolvesToASpecificSDKVersion(string channel, bool useFee
254254
255255 var commandResult = TestUtils . CreateInstallCommand ( args ) . ExecuteInstallation ( ) ;
256256
257- // Standard 'dryrun' criterium
257+ // Standard 'dryrun' criterion
258258 commandResult . Should ( ) . Pass ( ) ;
259259 commandResult . Should ( ) . NotHaveStdErr ( ) ;
260260 commandResult . Should ( ) . NotHaveStdOutContaining ( "dryrun" ) ;
@@ -298,7 +298,7 @@ public void WhenInvalidChannelWasUsed(string channel)
298298
299299 var commandResult = TestUtils . CreateInstallCommand ( args ) . ExecuteInstallation ( ) ;
300300
301- // Standard 'dryrun' criterium
301+ // Standard 'dryrun' criterion
302302 commandResult . Should ( ) . Fail ( ) ;
303303 commandResult . Should ( ) . HaveStdErrContaining ( "Failed to resolve the exact version number." ) ;
304304 commandResult . Should ( ) . NotHaveStdOutContaining ( "Repeatable invocation:" ) ;
@@ -311,15 +311,15 @@ public void WhenInstallDirAliasIsUsed()
311311 {
312312 var commandResult = TestUtils . CreateInstallCommand ( new [ ] { "-DryRun" , "-i" , "installation_path" } ) . ExecuteInstallation ( ) ;
313313
314- // Standard 'dryrun' criterium
314+ // Standard 'dryrun' criterion
315315 commandResult . Should ( ) . Pass ( ) ;
316316 commandResult . Should ( ) . NotHaveStdOutContaining ( "dryrun" ) ;
317317 commandResult . Should ( ) . HaveStdOutContaining ( "Repeatable invocation:" ) ;
318318 commandResult . Should ( ) . HaveStdOutMatching ( @"URL\s#0\s-\s(legacy|primary|aka\.ms):\shttps://" ) ;
319319
320320 // -i shouldn't be considered ambiguous on powershell.
321321 commandResult . Should ( ) . NotHaveStdOutContaining ( "the parameter name 'i' is ambiguous" ) ;
322- // bash doesn't give error on ambiguity. The first occurance of the alias wins.
322+ // bash doesn't give error on ambiguity. The first occurrence of the alias wins.
323323
324324 // -i should translate to -InstallDir
325325 if ( RuntimeInformation . IsOSPlatform ( OSPlatform . Windows ) )
0 commit comments