From e639e58eac36fc5b9361cc9eed1951da2a988dff Mon Sep 17 00:00:00 2001 From: Niels Saurer Date: Thu, 25 May 2023 13:30:49 +0200 Subject: [PATCH] fix wrong link name --- utils/zerovec/src/ule/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/zerovec/src/ule/mod.rs b/utils/zerovec/src/ule/mod.rs index 188ca2b6e8a..ef148f8bb14 100644 --- a/utils/zerovec/src/ule/mod.rs +++ b/utils/zerovec/src/ule/mod.rs @@ -157,7 +157,7 @@ where /// A trait for any type that has a 1:1 mapping with an unaligned little-endian (ULE) type. /// -/// If you need to implement this trait, consider using [`#[make_varule]`](crate::make_ule) instead. +/// If you need to implement this trait, consider using [`#[make_ule]`](crate::make_ule) instead. pub trait AsULE: Copy { /// The ULE type corresponding to `Self`. ///