You've already forked comprehensive-rust
mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-07-11 08:40:31 +02:00
Correct a minor mistake in the code in lifetime-elision.md (#2814)
This commit is contained in:
@ -42,7 +42,7 @@ fn main() {
|
|||||||
let points = &[Point(1, 0), Point(1, 0), Point(-1, 0), Point(0, -1)];
|
let points = &[Point(1, 0), Point(1, 0), Point(-1, 0), Point(0, -1)];
|
||||||
let nearest = {
|
let nearest = {
|
||||||
let query = Point(0, 2);
|
let query = Point(0, 2);
|
||||||
find_nearest(points, &Point(0, 2))
|
find_nearest(points, &query)
|
||||||
};
|
};
|
||||||
println!("{:?}", nearest);
|
println!("{:?}", nearest);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user