Skip to content

Commit

Permalink
Merge pull request rust-lang#291 from tsion/patch-1
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
steveklabnik committed Dec 8, 2014
2 parents 330dafa + 6b53018 commit d6a2fd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/lifetime/struct/struct.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ fn main() {

{
// And that `two` has lifetime `t`
// `two` has a shorter (and different) lifetime that `one` (`'t < 'o`)
// `two` has a shorter (and different) lifetime than `one` (`'t < 'o`)
let mut two = 2;

println!("Before: ({}, {})", one, two);
Expand Down

0 comments on commit d6a2fd7

Please sign in to comment.