From b7f7755014da627cc49d7713a295a48d55902550 Mon Sep 17 00:00:00 2001 From: Sunface Date: Mon, 4 Apr 2022 10:40:01 +0800 Subject: [PATCH] Update en/src/variables.md --- en/src/variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/src/variables.md b/en/src/variables.md index 36a65e6..6e70f14 100644 --- a/en/src/variables.md +++ b/en/src/variables.md @@ -7,7 +7,7 @@ // Fix the error below with least amount of modification to the code fn main() { let x: i32; // Uninitialized but used, ERROR ! - let y: i32; // Uninitialized but also unused, only a warning + let y: i32; // Uninitialized but also unused, only a Warning ! assert_eq!(x, 5); println!("Success!");