brunobrandes / fullcontact-api-csharp

A C# wrapper for the FullContact API
MIT License
5 stars 3 forks source link

README.md - failure example code #3

Closed tinohager closed 8 years ago

tinohager commented 8 years ago

Missing c

container.RegisterSingleton<IServiceProvider>(container);
ontainer.Register<IFullContactAppServiceFactory, FullContactAppServiceFactory>();
container.Register<IHttpClientFactory, HttpClientFactory>();

Bugfix

container.RegisterSingleton<IServiceProvider>(container);
container.Register<IFullContactAppServiceFactory, FullContactAppServiceFactory>();
container.Register<IHttpClientFactory, HttpClientFactory>();
brunobrandes commented 8 years ago

Hello @tinohager I added 'c' in example.

Thanks