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
parent
fd3580af2c
commit
8e02c58123
|
@ -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:
|
||||
|
||||
|
|
Loading…
Reference in New Issue