Skip to content

Commit

Permalink
Rollup merge of rust-lang#25277 - polachok:docfix, r=steveklabnik
Browse files Browse the repository at this point in the history
  • Loading branch information
Manishearth committed May 11, 2015
2 parents 8e4312b + 0c390d2 commit 05279f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/trpl/mutability.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ struct Point {
y: Cell<i32>,
}
let mut point = Point { x: 5, y: Cell::new(6) };
let point = Point { x: 5, y: Cell::new(6) };
point.y.set(7);
Expand Down

0 comments on commit 05279f0

Please sign in to comment.