From 5286679ed0cf2061721262c16c6abe40a4641ce9 Mon Sep 17 00:00:00 2001 From: Scott Addie Date: Fri, 1 Sep 2017 15:39:44 -0500 Subject: [PATCH] Fix spelling mistake --- aspnetcore/security/authorization/policies.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/security/authorization/policies.md b/aspnetcore/security/authorization/policies.md index 35fa74d911..742965b8f2 100644 --- a/aspnetcore/security/authorization/policies.md +++ b/aspnetcore/security/authorization/policies.md @@ -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` 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` when configuring your policy with the `RequireAssertion` policy builder. For example the previous `BadgeEntryHandler` could be rewritten as follows;