From 77bf467c0d101d76941d1189dc37bc513651c115 Mon Sep 17 00:00:00 2001 From: Joe4evr Date: Wed, 31 Jan 2018 08:20:22 +0100 Subject: [PATCH] Quickstart: fix minor derp --- docs/guides/getting_started/samples/intro/structure.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/getting_started/samples/intro/structure.cs b/docs/guides/getting_started/samples/intro/structure.cs index 43e0f33cd..3434619fa 100644 --- a/docs/guides/getting_started/samples/intro/structure.cs +++ b/docs/guides/getting_started/samples/intro/structure.cs @@ -66,7 +66,7 @@ class Program // If this method is getting pretty long, you can seperate it out into another file using partials. private static IServiceProvider ConfigureServices() { - map = new ServiceCollection() + var map = new ServiceCollection() // Repeat this for all the service classes // and other dependencies that your commands might need. .AddSingleton(new SomeServiceClass());