diff --git a/crates/dyn-abi/src/coerce.rs b/crates/dyn-abi/src/coerce.rs index fc96c6c95c..728ce18cb5 100644 --- a/crates/dyn-abi/src/coerce.rs +++ b/crates/dyn-abi/src/coerce.rs @@ -45,7 +45,6 @@ impl DynSolType { /// delimited by commas (`,`) and surrounded by brackets (`[]`) /// - [`Tuple`](DynSolType::Tuple): the inner types delimited by commas (`,`) and surrounded by /// parentheses (`()`) - /// - #[cfg_attr( feature = "eip712", doc = "- [`CustomStruct`](DynSolType::CustomStruct): the same as `Tuple`" diff --git a/crates/sol-types/src/impl_core.rs b/crates/sol-types/src/impl_core.rs index 1c328d955b..665e38a3a4 100644 --- a/crates/sol-types/src/impl_core.rs +++ b/crates/sol-types/src/impl_core.rs @@ -57,7 +57,7 @@ where Ok(unsafe { array_assume_init(array) }) } -/// [slice::split_array_ref](https://doc.rust-lang.org/std/primitive.slice.html#method.split_array_ref) +/// [`array::split_array_ref`] #[inline] #[track_caller] pub(crate) fn split_array_ref(slice: &[T]) -> (&[T; N], &[T]) {