Auto merge of #25277 - polachok:docfix, r=steveklabnik

r? @steveklabnik
This commit is contained in:
bors 2015-05-11 12:07:39 +00:00
commit 8004fc9fe0

View file

@ -169,7 +169,7 @@ struct Point {
y: Cell<i32>, 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); point.y.set(7);