From 882d5c0cdd14c25e67cb4bdf970fd4ee6828a9a7 Mon Sep 17 00:00:00 2001 From: Zach Daniel Date: Tue, 25 Feb 2025 10:15:42 -0500 Subject: [PATCH] docs: fix link to `define` option fixes #1823 --- documentation/topics/resources/code-interfaces.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/topics/resources/code-interfaces.md b/documentation/topics/resources/code-interfaces.md index 2b3761298..1d46af538 100644 --- a/documentation/topics/resources/code-interfaces.md +++ b/documentation/topics/resources/code-interfaces.md @@ -10,7 +10,7 @@ resources do end ``` -This simple setup now allows you to open a ticket with `Helpdesk.Support.open_ticket(subject)`. You can cause it to raise errors instead of return them with `Helpdesk.Support.open_ticket!(subject)`. For information on the options and additional inputs these defined functions take, look at the generated function documentation, which you can do in iex with `h Helpdesk.Support.open_ticket`. For more information on the code interface, read the DSL documentation: `d:Ash.Domain.Dsl.resource.interfaces`. +This simple setup now allows you to open a ticket with `Helpdesk.Support.open_ticket(subject)`. You can cause it to raise errors instead of return them with `Helpdesk.Support.open_ticket!(subject)`. For information on the options and additional inputs these defined functions take, look at the generated function documentation, which you can do in iex with `h Helpdesk.Support.open_ticket`. For more information on the code interface, read the DSL documentation: `d:Ash.Domain.Dsl.resources.resource.define`. ## Code interfaces on the resource