From 8e02c581233bebb02faf50862870520ed66a2498 Mon Sep 17 00:00:00 2001 From: mcasey329 Date: Wed, 25 May 2022 16:51:04 -0400 Subject: [PATCH] Fixed incorrect lower case letter, and incorrect plural (#25965) Minimum Host and Generic House are proper nouns in the document like Jim Smith and Bob Smith are proper nouns. You would not say "Jim and Bob smiths" -- you'd say "Jim and Bob Smith" it should be "Minimal and Generic Host" not "Minimal and Generic hosts" (Verified the .NET Generic Host topic as well for review. - WadePickett) --- aspnetcore/fundamentals/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/fundamentals/index.md b/aspnetcore/fundamentals/index.md index d9d6efed61..b3afcb2d96 100644 --- a/aspnetcore/fundamentals/index.md +++ b/aspnetcore/fundamentals/index.md @@ -75,7 +75,7 @@ There are three different hosts: * .NET Generic Host * ASP.NET Core Web Host -The .NET Minimal Host is recommended and used in all the ASP.NET Core templates. The Minimal and Generic hosts share many of the same interfaces and classes. The ASP.NET Core Web Host is available only for backward compatibility. +The .NET Minimal Host is recommended and used in all the ASP.NET Core templates. The Minimal and Generic Host share many of the same interfaces and classes. The ASP.NET Core Web Host is available only for backward compatibility. The following example instantiates a WebApplication Host: