Skip to content

Commit

Permalink
Fix clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
filmor committed Dec 14, 2019
1 parent 25f5b63 commit cd62676
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rustler/src/types/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ pub mod tuple;
pub mod local_pid;
pub use self::local_pid::LocalPid;

#[deprecated(since = "0.22", note = "Please use local_pid instead")]
#[deprecated(since = "0.22.0", note = "Please use local_pid instead")]
pub mod pid {
#[deprecated(since = "0.22", note = "Please use LocalPid instead")]
#[deprecated(since = "0.22.0", note = "Please use LocalPid instead")]
pub use super::LocalPid as Pid;
}
#[deprecated(since = "0.22", note = "Please use LocalPid instead")]
#[deprecated(since = "0.22.0", note = "Please use LocalPid instead")]
pub use self::LocalPid as Pid;

pub mod truthy;
Expand Down

0 comments on commit cd62676

Please sign in to comment.