Skip to content

Commit

Permalink
Auto merge of #25277 - polachok:docfix, r=steveklabnik
Browse files Browse the repository at this point in the history
  • Loading branch information
bors committed May 11, 2015
2 parents af57ec5 + 0c390d2 commit 8004fc9
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 8004fc9

Please sign in to comment.