diff --git a/en/src/variables.md b/en/src/variables.md index 527062d..fc22c66 100644 --- a/en/src/variables.md +++ b/en/src/variables.md @@ -38,9 +38,9 @@ fn main() { let x: i32 = 10; { let y: i32 = 5; - println!("The value of x is {} and value of y is {}", x, y); + println!("Inner scope value of x is {} and value of y is {}", x, y); } - println!("The value of x is {} and value of y is {}", x, y); + println!("Outer scope value of x is {} and value of y is {}", x, y); } ```