From f01e6c9750f6ef94a1aca09b9a682e3bdc93df02 Mon Sep 17 00:00:00 2001 From: Bhav Beri Date: Sat, 10 Dec 2022 15:59:43 +0530 Subject: [PATCH] Updated dotnet template name language/dotnet/build-images.md --- language/dotnet/build-images.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/dotnet/build-images.md b/language/dotnet/build-images.md index e4a28c970c..3775225946 100644 --- a/language/dotnet/build-images.md +++ b/language/dotnet/build-images.md @@ -27,7 +27,7 @@ For our sample application, let’s create a simple application from a template ```console $ mkdir dotnet-docker $ cd dotnet-docker -$ dotnet new webApp -n myWebApp -o src --no-https +$ dotnet new webapp -n myWebApp -o src --no-https ``` Output similar to the following appears.