Skip to content

Commit

Permalink
rc5: fixed deprecation version typo
Browse files Browse the repository at this point in the history
  • Loading branch information
NamedNeon committed Aug 31, 2023
1 parent 1f4ff69 commit c71f0ae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions rc5/src/core/backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -230,14 +230,14 @@ where
}

#[allow(dead_code)]
#[deprecated(since = "0.0.2", note = "use RC5<u16, U16, U8> instead.")]
#[deprecated(since = "0.1.0", note = "use RC5<u16, U16, U8> instead.")]
pub type RC5_16_16_8 = RC5<u16, U16, U8>;
#[allow(dead_code)]
#[deprecated(since = "0.0.2", note = "use RC5<u32, U12, U16> instead.")]
#[deprecated(since = "0.1.0", note = "use RC5<u32, U12, U16> instead.")]
pub type RC5_32_12_16 = RC5<u32, U12, U16>;
#[allow(dead_code)]
#[deprecated(since = "0.0.2", note = "use RC5<u32, U16, U16> instead.")]
#[deprecated(since = "0.1.0", note = "use RC5<u32, U16, U16> instead.")]
pub type RC5_32_16_16 = RC5<u32, U16, U16>;
#[allow(dead_code)]
#[deprecated(since = "0.0.2", note = "use RC5<u64, U24, U24> instead.")]
#[deprecated(since = "0.1.0", note = "use RC5<u64, U24, U24> instead.")]
pub type RC5_64_24_24 = RC5<u64, U24, U24>;

0 comments on commit c71f0ae

Please sign in to comment.