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)
pull/25958/head
mcasey329 2022-05-25 16:51:04 -04:00 committed by GitHub
parent fd3580af2c
commit 8e02c58123
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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: