Skip to content

Commit

Permalink
fix(lint): linting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerald Baulig committed Jul 12, 2024
1 parent d30f6a3 commit b56b8e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/accessController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ export class AccessController {
if (policyEffects?.length > 0) {
const e = this.decide(method, policyEffects);
/**
* Propagate the internal combiningAlgorithm to the outer level!
* Propagate the internal combiningAlgorithm to the outer level!
* Policy-Sets of hte same nature will combine their results and act as one.
* If only one of many permitting Policy-Sets emits PERMIT, it counts for all.
* If only one of many denying Policy-Sets emits DENY, it counts for all.
Expand All @@ -319,7 +319,7 @@ export class AccessController {
effect = e;
}
else {
effect = e
effect = e;
}
}

Expand Down

0 comments on commit b56b8e0

Please sign in to comment.