Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
filmor committed Dec 12, 2019
1 parent 01b5b61 commit 25f5b63
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion rustler/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ mod term;

pub use crate::term::Term;
pub use crate::types::{
Atom, Binary, Decoder, Encoder, ListIterator, MapIterator, OwnedBinary, LocalPid,
Atom, Binary, Decoder, Encoder, ListIterator, LocalPid, MapIterator, OwnedBinary,
};
pub mod resource;
pub use crate::resource::ResourceArc;
Expand Down
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", note = "Please use local_pid instead")]
pub mod pid {
#[deprecated(since="0.22", note="Please use LocalPid instead")]
#[deprecated(since = "0.22", note = "Please use LocalPid instead")]
pub use super::LocalPid as Pid;
}
#[deprecated(since="0.22", note="Please use LocalPid instead")]
#[deprecated(since = "0.22", note = "Please use LocalPid instead")]
pub use self::LocalPid as Pid;

pub mod truthy;
Expand Down

0 comments on commit 25f5b63

Please sign in to comment.