Skip to content

Commit f5fbc85

Browse files
authored
docs: remove stray list element (#500)
1 parent c974656 commit f5fbc85

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

crates/dyn-abi/src/coerce.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ impl DynSolType {
4545
/// delimited by commas (`,`) and surrounded by brackets (`[]`)
4646
/// - [`Tuple`](DynSolType::Tuple): the inner types delimited by commas (`,`) and surrounded by
4747
/// parentheses (`()`)
48-
/// -
4948
#[cfg_attr(
5049
feature = "eip712",
5150
doc = "- [`CustomStruct`](DynSolType::CustomStruct): the same as `Tuple`"

crates/sol-types/src/impl_core.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ where
5757
Ok(unsafe { array_assume_init(array) })
5858
}
5959

60-
/// [slice::split_array_ref](https://doc.rust-lang.org/std/primitive.slice.html#method.split_array_ref)
60+
/// [`array::split_array_ref`]
6161
#[inline]
6262
#[track_caller]
6363
pub(crate) fn split_array_ref<T, const N: usize>(slice: &[T]) -> (&[T; N], &[T]) {

0 commit comments

Comments
 (0)