From aae9e06ac3f233d8631a07c30a31012148d9aff0 Mon Sep 17 00:00:00 2001 From: Diego Luiz Brum Date: Tue, 26 Feb 2019 10:16:24 +0000 Subject: [PATCH] Update controllers.md Typo fix --- docs/usage/extensibility/controllers.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/usage/extensibility/controllers.md b/docs/usage/extensibility/controllers.md index 3870e408f4..1802e20217 100644 --- a/docs/usage/extensibility/controllers.md +++ b/docs/usage/extensibility/controllers.md @@ -20,13 +20,12 @@ If your model is using a type other than int for the primary key, you must expli ```c# public class ArticlesController : JsonApiController -//---------------------- ^^^^ +//---------------------------------------------------------- ^^^^ { public ArticlesController( IJsonApiContext jsonApiContext, IResourceService resourceService, - //--------------------- ^^^^ - + //----------------------- ^^^^ ILoggerFactory loggerFactory) : base(jsonApiContext, resourceService, loggerFactory) { } @@ -105,4 +104,4 @@ public class ReportsController : BaseJsonApiController public override async Task GetAsync() => await base.GetAsync(); } -``` \ No newline at end of file +```