docs: remove duplicated word in Rego style guide (#8800)

The Rego style guide reads "will fail both in the the undefined case" —
removed the duplicated "the".

Signed-off-by: s3onghyun <s3onghyun.hong@gmail.com>
This commit is contained in:
SEONGHYUN HONG
2026-06-19 01:41:01 +09:00
committed by GitHub
parent b0c824b1a9
commit f4121fb38f
+1 -1
View File
@@ -323,7 +323,7 @@ deny contains "User is anonymous" if not authenticated_user
authenticated_user if input.user_id != "anonymous"
```
In the above case, the `authenticated_user` rule will fail **both** in the the undefined case, and if defined
In the above case, the `authenticated_user` rule will fail **both** in the undefined case, and if defined
but equal to "anonymous". Since the result of the helper rule is negated in the `deny` rule, both
cases are covered.