Skip to content

Commit

Permalink
fix: doc in dyn-abi (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
prestwich authored Jun 26, 2023
1 parent 8c6a5bb commit de08781
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/dyn-abi/src/value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -258,8 +258,8 @@ impl DynSolValue {
)
}

/// Fallible cast to a fixed-size array. Any of a FixedArray, a Tuple, or a
/// `CustomStruct.
/// Fallible cast to a fixed-size array. Any of a `FixedArray`, a `Tuple`,
/// or a `CustomStruct`.
pub fn as_fixed_seq(&self) -> Option<&[DynSolValue]> {
match self {
Self::FixedArray(inner) => Some(inner.as_slice()),
Expand Down

0 comments on commit de08781

Please sign in to comment.