From 8c7e478c3f0c55a0bbf5e25cdfb09f65bff4bde3 Mon Sep 17 00:00:00 2001 From: martincostello Date: Mon, 30 May 2016 21:55:00 +0100 Subject: [PATCH] Fix typo in help for dotnet build Fix typo in the argument description shown for "dotnet build --help". --- src/dotnet/commands/dotnet-build/BuildCommandApp.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dotnet/commands/dotnet-build/BuildCommandApp.cs b/src/dotnet/commands/dotnet-build/BuildCommandApp.cs index 0dd8d4687..11d7e3fde 100644 --- a/src/dotnet/commands/dotnet-build/BuildCommandApp.cs +++ b/src/dotnet/commands/dotnet-build/BuildCommandApp.cs @@ -80,7 +80,7 @@ namespace Microsoft.DotNet.Tools.Compiler _versionSuffixOption = _app.Option("--version-suffix ", "Defines what `*` should be replaced with in version field in project.json", CommandOptionType.SingleValue); _projectArgument = _app.Argument("", "The project to compile, defaults to the current directory. " + "Can be one or multiple paths to project.json, project directory " + - "or globbing patter that matches project.json files", multipleValues: true); + "or globbing pattern that matches project.json files", multipleValues: true); _shouldPrintIncrementalPreconditionsArgument = _app.Option(BuildProfileFlag, "Set this flag to print the incremental safety checks that prevent incremental compilation", CommandOptionType.NoValue); _shouldNotUseIncrementalityArgument = _app.Option(NoIncrementalFlag, "Set this flag to turn off incremental build", CommandOptionType.NoValue);