From 78f3ee46f117acf7534ea361d3d61acbf3c87cef Mon Sep 17 00:00:00 2001 From: Paul Burlumi Date: Thu, 26 Apr 2018 14:01:28 +0100 Subject: [PATCH] Fixed minor spelling mistakes and grammar (#18) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c83cf06..aff535e 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ public static IWebHost BuildWebHost(string[] args) => .Build(); ``` -- In case Unity container configured via application configuration or by convention this container could be used to initalize service provider. +- In case Unity container configured via application configuration or by convention this container could be used to initialize service provider. ```C# public static IWebHost BuildWebHost(string[] args) => @@ -44,7 +44,7 @@ public void ConfigureContainer(IUnityContainer container) ### Startup -At the moment it is not possible to resolve Startup class from Unity even if it is configured as default container. [An Issue](https://github.com/aspnet/Hosting/issues/1309) has been filed with ASPNET team to fix it. Once it is resolved it would be possible to resolve Startap class itself from the Unity container. +At the moment it is not possible to resolve Startup class from Unity even if it is configured as default container. [An Issue](https://github.com/aspnet/Hosting/issues/1309) has been filed with ASPNET team to fix it. Once it is resolved it would be possible to resolve the Startup class itself from the Unity container. ## Examples