diff options
| author | mo8it <mo8it@proton.me> | 2024-07-04 13:38:41 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2024-07-04 13:38:41 +0200 |
| commit | b017b87866962a2101016ce28534b9b37f47c4d2 (patch) | |
| tree | 716c2b6a1495a86da5b49cdf073004561f9ea6fd /solutions/01_variables/variables3.rs | |
| parent | b87aa986345cd80bc44c7fe7bffeb72f5fe0ddb5 (diff) | |
Fix typo
Diffstat (limited to 'solutions/01_variables/variables3.rs')
| -rw-r--r-- | solutions/01_variables/variables3.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solutions/01_variables/variables3.rs b/solutions/01_variables/variables3.rs index b493917..15f6557 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; |
