Skip to content

Commit be49671

Browse files
authored
Improve a bit more
1 parent 2a40918 commit be49671

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc/infer/region_inference/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ fn inc(p: &mut usize) -> usize {
183183
*p += 1; *p
184184
}
185185
fn weird() {
186-
let mut x: Box<Foo> = box Foo { ... };
186+
let mut x: Box<Foo> = box Foo { /* ... */ };
187187
'a: add(&mut (*x).f,
188188
'b: inc(&mut (*x).f)) // (..)
189189
}

0 commit comments

Comments
 (0)