From 52f6a44b0b4e1fa6f5be93169d88e0bf03b9fe08 Mon Sep 17 00:00:00 2001 From: Alan Heywood Date: Wed, 15 May 2024 21:14:45 +1000 Subject: [PATCH] docs: fix typo in the custom strategy guide (#687) --- documentation/topics/custom-strategy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/topics/custom-strategy.md b/documentation/topics/custom-strategy.md index 422a49d..f650f06 100644 --- a/documentation/topics/custom-strategy.md +++ b/documentation/topics/custom-strategy.md @@ -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