diff --git a/src/lib.rs b/src/lib.rs index 444a063..b4e06ac 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -20,7 +20,6 @@ //============================================================================// // Imports + Features // //============================================================================// - #![feature(try_from)] // Standard Library: @@ -177,7 +176,7 @@ impl Into for TCErrorKind { /// Conversions from error codes into as specified in /// `4. Replies` in the TorCP specification. impl TryFrom for TCErrorKind { - type Err = (); + type Error = (); fn try_from(code: u32) -> Result { use TCErrorKind::*; match code {