From b017b87866962a2101016ce28534b9b37f47c4d2 Mon Sep 17 00:00:00 2001 From: mo8it Date: Thu, 4 Jul 2024 13:38:41 +0200 Subject: [PATCH] Fix typo --- solutions/01_variables/variables3.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solutions/01_variables/variables3.rs b/solutions/01_variables/variables3.rs index b493917e..15f6557c 100644 --- a/solutions/01_variables/variables3.rs +++ b/solutions/01_variables/variables3.rs @@ -7,7 +7,7 @@ fn main() { println!("Number {x}"); - // It possible to declare a variable and initialize it later. + // It is possible to declare a variable and initialize it later. // But it can't be used before initialization. let y: i32; y = 42;