diff options
| author | mo8it <mo8it@proton.me> | 2024-06-14 13:32:37 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2024-06-14 13:32:37 +0200 |
| commit | 5bf8d1fa1bcbf885c7cd9c7ae49494826c209da6 (patch) | |
| tree | 9273099390ab9c3a967beab25dc63ebd79ed588e | |
| parent | 2ff18137462513883533a10c929fe59364b8f884 (diff) | |
Fix typos
| -rw-r--r-- | exercises/01_variables/variables5.rs | 2 | ||||
| -rw-r--r-- | src/main.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/exercises/01_variables/variables5.rs b/exercises/01_variables/variables5.rs index 73f655e..49db8e9 100644 --- a/exercises/01_variables/variables5.rs +++ b/exercises/01_variables/variables5.rs @@ -2,7 +2,7 @@ fn main() { let number = "T-H-R-E-E"; // Don't change this line println!("Spell a number: {}", number); - // TODO: Fix the compiler error by changing the line below without renaming the the variable. + // TODO: Fix the compiler error by changing the line below without renaming the variable. number = 3; println!("Number plus two is: {}", number + 2); } diff --git a/src/main.rs b/src/main.rs index cf6f0d9..2233d8b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -151,7 +151,7 @@ fn main() -> Result<()> { let notify_exercise_names = if args.manual_run { None } else { - // For the the notify event handler thread. + // For the notify event handler thread. // Leaking is not a problem because the slice lives until the end of the program. Some( &*app_state |
