From f58eab16c79bb3f4b18c65532c43220815a4b21d Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Thu, 13 Mar 2025 07:16:32 +0100 Subject: [PATCH] docs(tvix/eval/builtin-macros): fix docstring MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We only pull in tvix_eval in dev dependencies, so this cannot link to the type. Change-Id: I26948a32567e2dc8e846601c05b820d9aa14605f Reviewed-on: https://cl.tvl.fyi/c/depot/+/13250 Autosubmit: flokli Reviewed-by: Marijan Petričević Reviewed-by: Domen Kožar Tested-by: BuildkiteCI --- tvix/eval/builtin-macros/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tvix/eval/builtin-macros/src/lib.rs b/tvix/eval/builtin-macros/src/lib.rs index 9b14aee44..4cb803227 100644 --- a/tvix/eval/builtin-macros/src/lib.rs +++ b/tvix/eval/builtin-macros/src/lib.rs @@ -111,7 +111,7 @@ fn parse_module_args(args: TokenStream) -> Option { /// transformation is mostly invisible to users of the macro. /// /// A function `fn builtins() -> Vec` will be defined within the annotated module, -/// returning a list of [`tvix_eval::Builtin`] for each function annotated with the `#[builtin]` +/// returning a list of `tvix_eval::Builtin` for each function annotated with the `#[builtin]` /// attribute within the module. If a `state` type is specified, the `builtins` function will take a /// value of that type. ///