Skip to content

Commit

Permalink
Update for latest nightly
Browse files Browse the repository at this point in the history
Rust now enforces a comma between lifetime and type, see
rust-lang/rust#24547 for the change.
  • Loading branch information
zsiciarz committed Apr 26, 2015
1 parent e0e5312 commit d852707
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ pub struct BackgroundSession<'a> {
/// Path of the mounted filesystem
pub mountpoint: PathBuf,
/// Thread guard of the background session
pub guard: JoinGuard<'a ()>,
pub guard: JoinGuard<'a, ()>,
}

impl<'a> BackgroundSession<'a> {
Expand Down

0 comments on commit d852707

Please sign in to comment.