Skip to content

Commit d3a0c26

Browse files
committed
Improve the placement of TODO comments
1 parent 95f10c8 commit d3a0c26

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

exercises/00_intro/intro1.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// We sometimes encourage you to keep trying things on a given exercise, even
2-
// after you already figured it out. If you got everything working and feel
1+
// TODO: We sometimes encourage you to keep trying things on a given exercise,
2+
// even after you already figured it out. If you got everything working and feel
33
// ready for the next exercise, enter `n` in the terminal.
44
//
55
// The exercise file will be reloaded when you change one of the lines below!

exercises/00_intro/intro2.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
// TODO: Fix the code to print "Hello world!".
2-
31
fn main() {
2+
// TODO: Fix the code to print "Hello world!".
43
printline!("Hello world!");
54
}

exercises/01_variables/variables4.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// TODO: Fix the compiler error.
2-
32
fn main() {
43
let x = 3;
54
println!("Number {x}");

0 commit comments

Comments
 (0)