diff --git a/Examples.md b/Examples.md index 170af29..d5fe77b 100644 --- a/Examples.md +++ b/Examples.md @@ -547,7 +547,7 @@ fn main() { println!("inner short: {}", short_lived_binding); } - // Error! `short_lived_binding` doesn't exist in this scope + // Error! `short_lived_binding` doesn't exist here println!("outer short: {}", short_lived_binding); // FIXME ^ Comment out this line @@ -564,7 +564,7 @@ fn main let short_lived_binding = 2 println! "inner short: {}", short_lived_binding - // Error! `short_lived_binding` doesn't exist in this scope + // Error! `short_lived_binding` doesn't exist here println! "outer short: {}", short_lived_binding // FIXME ^ Comment out this line