docs: fix typo in the custom strategy guide (#687)

This commit is contained in:
Alan Heywood 2024-05-15 21:14:45 +10:00 committed by GitHub
parent b9a81770f3
commit 52f6a44b0b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -272,7 +272,7 @@ indicates Ash Authentication whether your strategy creates or consumes any
tokens. Since our strategy does not, we can simply return false:
```elixir
def token_required?(_), do: false
def tokens_required?(_), do: false
```
## Bonus round - transformers and verifiers