Correct spelling

This commit is contained in:
Michael Vines 2018-09-10 19:58:18 -07:00
parent 9d80eefb81
commit bace2880d0
No known key found for this signature in database
GPG Key ID: 33F4FDEC4E0E88BD
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ impl Condition {
} }
} }
/// A data type reprsenting a payment plan. /// A data type representing a payment plan.
#[repr(C)] #[repr(C)]
#[derive(Serialize, Deserialize, Debug, PartialEq, Eq, Clone)] #[derive(Serialize, Deserialize, Debug, PartialEq, Eq, Clone)]
pub enum Budget { pub enum Budget {

View File

@ -12,7 +12,7 @@ pub enum Witness {
/// The current time. /// The current time.
Timestamp(DateTime<Utc>), Timestamp(DateTime<Utc>),
/// A siganture from Pubkey. /// A signature from Pubkey.
Signature, Signature,
} }