Skip to content

Commit

Permalink
docs: fix typo in code examples (#531)
Browse files Browse the repository at this point in the history
Signed-off-by: Charlie Egan <charlie@styra.com>
  • Loading branch information
charlieegan3 authored Jan 17, 2024
1 parent 071463b commit 7a7a3db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/rules/idiomatic/no-defined-entrypoint.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ default allow := false
# Nothing wrong with this rule, but an
# entrypoint should be documented as such
allow if user_is_admin
allof if public_resource_read
allow if public_resource_read
user_is_admin if {
some role in input.user.roles
Expand All @@ -44,7 +44,7 @@ default allow := false
# description: Allow only admins, or reading public resources
# entrypoint: true
allow if user_is_admin
allof if public_resource_read
allow if public_resource_read
user_is_admin if {
some role in input.user.roles
Expand Down

0 comments on commit 7a7a3db

Please sign in to comment.