From eaa322e4329fbe2c53ab7033c559b2eabc840604 Mon Sep 17 00:00:00 2001 From: Christian Weiss Date: Thu, 18 May 2017 20:23:24 +0200 Subject: [PATCH] Missing ")" in comment (#3381) --- aspnetcore/fundamentals/app-state.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/fundamentals/app-state.md b/aspnetcore/fundamentals/app-state.md index 6bdd4e038a..449314581b 100644 --- a/aspnetcore/fundamentals/app-state.md +++ b/aspnetcore/fundamentals/app-state.md @@ -211,7 +211,7 @@ public class MyController : Controller public MyController(MyAppData myService) { // Do something with the service (read some data from it, - // store it in a private field/property, etc. + // store it in a private field/property, etc.) } } ```