docs(tvix/eval/builtin-macros): fix docstring

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 <flokli@flokli.de>
Reviewed-by: Marijan Petričević <marijan.petricevic94@gmail.com>
Reviewed-by: Domen Kožar <domen@cachix.org>
Tested-by: BuildkiteCI
This commit is contained in:
Florian Klink 2025-03-13 07:16:32 +01:00 committed by flokli
parent d3da3238c2
commit f58eab16c7

View file

@ -111,7 +111,7 @@ fn parse_module_args(args: TokenStream) -> Option<Type> {
/// transformation is mostly invisible to users of the macro.
///
/// A function `fn builtins() -> Vec<Builtin>` 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.
///