From 4e5c9167820686184cdad637fec08be796fe449b Mon Sep 17 00:00:00 2001 From: Ian Chamberlain Date: Sat, 23 Sep 2023 14:15:40 -0400 Subject: [PATCH] Fix doc link to stdlib include_bytes --- citro3d-macros/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/citro3d-macros/src/lib.rs b/citro3d-macros/src/lib.rs index 932f177..3d77b3f 100644 --- a/citro3d-macros/src/lib.rs +++ b/citro3d-macros/src/lib.rs @@ -13,7 +13,7 @@ use quote::quote; /// Compiles the given PICA200 shader using [`picasso`](https://github.com/devkitPro/picasso) /// and returns the compiled bytes directly as a `&[u8]` slice. /// -/// This is similar to the standard library's [`include_bytes!`] macro, for which +/// This is similar to the standard library's [`include_bytes!`](std::include_bytes) macro, for which /// file paths are relative to the source file where the macro is invoked. /// /// The compiled shader binary will be saved in the caller's `$OUT_DIR`.