summaryrefslogtreecommitdiff
path: root/doc/development/graphql_guide/authorization.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/development/graphql_guide/authorization.md')
-rw-r--r--doc/development/graphql_guide/authorization.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/graphql_guide/authorization.md b/doc/development/graphql_guide/authorization.md
index ee5713f6fda..8f17a8b6c93 100644
--- a/doc/development/graphql_guide/authorization.md
+++ b/doc/development/graphql_guide/authorization.md
@@ -148,7 +148,7 @@ end
```
In this example, we use field authorization (such as
-`Ability.allowed?(current_user, :read_transactions, bank_account)`) to avoid
+`Ability.allowed?(current_user, :read_transactions, bank_account)`) to avoid
a more expensive query:
```ruby