This commit is contained in:
John Doe 2017-08-13 17:48:27 -07:00 committed by William Lee
parent 1fa454bda4
commit 8fc8a03081
7 changed files with 8 additions and 8 deletions

View file

@ -78,7 +78,7 @@ namespace Microsoft.DotNet.Tools.Test.Utilities
{
// TODO: Nick Guerrera (Nick.Guerrera@microsoft.com) hacked this method for temporary use.
// There is a blob decoder feature in progress but it won't ship in time for our milestone.
// Replace this method with the blob decoder feature when later it is availale.
// Replace this method with the blob decoder feature when later it is available.
var signature = reader.GetMemberReference((MemberReferenceHandle)attribute.Constructor).Signature;
var signatureReader = reader.GetBlobReader(signature);

View file

@ -54,7 +54,7 @@ runtime-options:
--additionalprobingpath <path> Path containing probing policy and assemblies to probe for.
--fx-version <version> Version of the installed Shared Framework to use to run the application.
--roll-forward-on-no-candidate-fx Roll forward on no candidate shared framework is enabled.
--additional-deps <path> Path to additonal deps.json file.";
--additional-deps <path> Path to additional deps.json file.";
[Theory]
[InlineData("--help")]

View file

@ -20,7 +20,7 @@ namespace Microsoft.DotNet.Tests.ParserTests
private readonly ITestOutputHelper output;
[Fact]
public void RunParserCanGetArguementFromDoubleDash()
public void RunParserCanGetArgumentFromDoubleDash()
{
var runCommand = RunCommand.FromArgs(new[]{ "--", "foo" });
runCommand.Args.Single().Should().Be("foo");