Fix spelling mistake

pull/4180/head
Scott Addie 2017-09-01 15:39:44 -05:00 committed by GitHub
parent 85431318e8
commit 5286679ed0
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ Now, assuming both handlers are [registered](xref:security/authorization/policie
## Using a func to fufill a policy
There may be occasions where fufilling a policy is simple to express in code. It is possible to simply supply a `Func<AuthorizationHandlerContext, bool>` when configuring your policy with the `RequireAssertion` policy builder.
There may be occasions where fulfilling a policy is simple to express in code. It is possible to simply supply a `Func<AuthorizationHandlerContext, bool>` when configuring your policy with the `RequireAssertion` policy builder.
For example the previous `BadgeEntryHandler` could be rewritten as follows;