add missing word (#4060)

pull/4063/head
Steven Moschidis 2017-08-22 16:48:24 +01:00 committed by Scott Addie
parent e18da1f314
commit 0c188f31bb
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ uid: security/authorization/dependencyinjection
Suppose you had a repository of rules you wanted to evaluate inside an authorization handler and that repository was registered in the service collection. Authorization will resolve and inject that into your constructor.
For example, if you wanted to use ASP.NET's logging infrastructure you would to inject `ILoggerFactory` into your handler. Such a handler might look like:
For example, if you wanted to use ASP.NET's logging infrastructure you would want to inject `ILoggerFactory` into your handler. Such a handler might look like:
```csharp
public class LoggingAuthorizationHandler : AuthorizationHandler<MyRequirement>