Move rustdoc above attribute

It is customary in this repository to put the rustdoc above the
attributes.
This commit is contained in:
Tobin C. Harding 2022-07-28 13:37:05 +10:00
parent e9230019eb
commit abc014a079
1 changed files with 1 additions and 1 deletions

View File

@ -252,9 +252,9 @@ impl Default for TxIn {
#[cfg_attr(feature = "serde", serde(crate = "actual_serde"))] #[cfg_attr(feature = "serde", serde(crate = "actual_serde"))]
pub struct Sequence(pub u32); pub struct Sequence(pub u32);
/// An error in creating relative lock-times.
#[derive(Clone, PartialEq, Eq, Debug)] #[derive(Clone, PartialEq, Eq, Debug)]
#[non_exhaustive] #[non_exhaustive]
/// An error in creating relative lock-times.
pub enum RelativeLockTimeError { pub enum RelativeLockTimeError {
/// The input was too large /// The input was too large
IntegerOverflow(u32) IntegerOverflow(u32)