From d6849c2fa1c16e83cbbaa258cdacb80598f1ed58 Mon Sep 17 00:00:00 2001 From: Piotr Puszkiewicz Date: Tue, 28 Jun 2016 16:29:36 -0700 Subject: [PATCH] Piotrp msft/3628 rebase (#3694) * fix typo * doc --- src/dotnet/commands/dotnet-new/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/dotnet/commands/dotnet-new/README.md b/src/dotnet/commands/dotnet-new/README.md index fa1f474b0..bdd871695 100644 --- a/src/dotnet/commands/dotnet-new/README.md +++ b/src/dotnet/commands/dotnet-new/README.md @@ -22,7 +22,7 @@ After this, the project is ready to be compiled and/or edited further. `-l`, `--lang [C#|F#]` -Language of the project. Defaults to `C#`. `csharp` (`fsharp`) or `cs` (`fs`) are also valid options. +Language of the project. Defaults to `C#`. `csharp` ( or `cs` ) and `fsharp` ( or `fs` ) are also valid options. `-t`, `--type` @@ -41,15 +41,15 @@ Valid values for F# are: `dotnet new` - Drops a sample C## project in the current directory. + Drops a sample C# project in the current directory. -`dotnet new --lang f##` +`dotnet new --lang f#` - Drops a sample F## project in the current directory. + Drops a sample F# project in the current directory. -`dotnet new --lang c##` +`dotnet new --lang c#` - Drops a sample C## project in the current directory. + Drops a sample C# project in the current directory. # SEE ALSO dotnet-run(1)