From c2373e9e0dc47bbdd78d671f06de998e111bb029 Mon Sep 17 00:00:00 2001 From: Scott Carlton Date: Tue, 6 Dec 2016 10:01:54 -0800 Subject: [PATCH] Fixed spacing for some strings Some strings lost a space before .NET for some reason. Fixed now. --- src/dotnet/commands/dotnet-help/LocalizableStrings.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dotnet/commands/dotnet-help/LocalizableStrings.cs b/src/dotnet/commands/dotnet-help/LocalizableStrings.cs index afca05ce88..952d5bf1d3 100644 --- a/src/dotnet/commands/dotnet-help/LocalizableStrings.cs +++ b/src/dotnet/commands/dotnet-help/LocalizableStrings.cs @@ -30,13 +30,13 @@ internal class LocalizableStrings public const string NewDefinition = "Initialize a basic .NET project"; - public const string RestoreDefinition = "Restore dependencies specified in the.NET project"; + public const string RestoreDefinition = "Restore dependencies specified in the .NET project"; public const string BuildDefinition = "Builds a .NET project"; public const string PublishDefinition = "Publishes a .NET project for deployment (including the runtime)"; - public const string RunDefinition = "Compiles and immediately executes a.NET project"; + public const string RunDefinition = "Compiles and immediately executes a .NET project"; public const string TestDefinition = "Runs unit tests using the test runner specified in the project";