Skip to content

Commit bcf17fb

Browse files
authored
Merge pull request #2386 from YEriin/patch-1
Update ch01-02-hello-world.md
2 parents c9d5db3 + fce7281 commit bcf17fb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/ch01-02-hello-world.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,9 @@ Inside the `main` function is the following code:
119119
```
120120

121121
This line does all the work in this little program: it prints text to the
122-
screen. There are four important details to notice here. First, Rust style is
123-
to indent with four spaces, not a tab.
122+
screen. There are four important details to notice here.
123+
124+
First, Rust style is to indent with four spaces, not a tab.
124125

125126
Second, `println!` calls a Rust macro. If it called a function instead, it
126127
would be entered as `println` (without the `!`). We’ll discuss Rust macros in

0 commit comments

Comments
 (0)