Skip to content

Commit

Permalink
mark as source code to avoid unclosed HTML tag warning
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinheavey committed Oct 10, 2024
1 parent 2c1b831 commit 9577a81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdk/src/signer/signers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ pub trait Signers {
/// Any `T` where `T` impls `IntoIterator` yielding
/// `Signer`s implements `Signers`.
///
/// This includes [&dyn Signer], [Box<dyn Signer>],
/// [&dyn Signer; N], Vec<dyn Signer>, Vec<Keypair>, etc.
/// This includes `[&dyn Signer]`, `[Box<dyn Signer>]`,
/// `[&dyn Signer; N]`, `Vec<dyn Signer>`, `Vec<Keypair>`, etc.
///
/// When used as a generic function param, `&T`
/// should be used instead of `T` where T: Signers, due to the `?Sized` bounds on T.
Expand Down

0 comments on commit 9577a81

Please sign in to comment.