From 78b66382f98194ff898ea10bc6b2cab751cbad29 Mon Sep 17 00:00:00 2001 From: Hao Kung Date: Wed, 22 Oct 2014 13:33:26 -0700 Subject: [PATCH] Fix samples typo --- samples/IdentitySample.Mvc/Controllers/AccountController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/IdentitySample.Mvc/Controllers/AccountController.cs b/samples/IdentitySample.Mvc/Controllers/AccountController.cs index 5cde68b216..1dcfa4b2e8 100644 --- a/samples/IdentitySample.Mvc/Controllers/AccountController.cs +++ b/samples/IdentitySample.Mvc/Controllers/AccountController.cs @@ -14,7 +14,7 @@ namespace IdentitySample.Models { public AccountController(UserManager userManager, SignInManager signInManager) { - UserManager = UserManager; + UserManager = userManager; SignInManager = signInManager; }