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

@ -20,7 +20,7 @@ namespace Microsoft.DotNet.Scripts
///
/// The following Environment Variables can optionally be specified:
///
/// DOTNET_VERSION_URL - The Url to the root of the version information (this is combined with the fragments bellow) (ex. "https://raw.githubusercontent.com/dotnet/versions/master/build-info")
/// DOTNET_VERSION_URL - The Url to the root of the version information (this is combined with the fragments below) (ex. "https://raw.githubusercontent.com/dotnet/versions/master/build-info")
/// ROSLYN_VERSION_FRAGMENT - The fragment to combine with DOTNET_VERSION_URL to get the current dotnet/roslyn package versions. (ex. "dotnet/roslyn/netcore1.0")
/// CORESETUP_VERSION_FRAGMENT - The fragment to combine with DOTNET_VERSION_URL to get the current dotnet/core-setup package versions. (ex. "dotnet/core-setup/master")
/// GITHUB_ORIGIN_OWNER - The owner of the GitHub fork to push the commit and create the PR from. (ex. "dotnet-bot")

View file

@ -19,7 +19,7 @@ namespace SevenZip.Compression.LZ
public UInt32 _bufferOffset;
public UInt32 _blockSize; // Size of Allocated memory block
public UInt32 _pos; // offset (from _buffer) of curent byte
public UInt32 _pos; // offset (from _buffer) of current byte
UInt32 _keepSizeBefore; // how many BYTEs must be kept in buffer before _pos
UInt32 _keepSizeAfter; // how many BYTEs must be kept buffer after _pos
public UInt32 _streamPos; // offset (from _buffer) of first not read byte from Stream

View file

@ -121,7 +121,7 @@ namespace SevenZip
/// </summary>
MatchFinder,
/// <summary>
/// Specifies the number of match finder cyckes.
/// Specifies the number of match finder cycles.
/// </summary>
MatchFinderCycles,
/// <summary>

View file

@ -13,11 +13,11 @@ namespace Microsoft.DotNet.Cli.Utils
{
public class PackagedCommandSpecFactoryWithCliRuntime : PackagedCommandSpecFactory
{
public PackagedCommandSpecFactoryWithCliRuntime() : base(AddAditionalParameters)
public PackagedCommandSpecFactoryWithCliRuntime() : base(AddAdditionalParameters)
{
}
private static void AddAditionalParameters(string commandPath, IList<string> arguments)
private static void AddAdditionalParameters(string commandPath, IList<string> arguments)
{
if(PrefersCliRuntime(commandPath))
{

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");