We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c9d5db3 + fce7281 commit bcf17fbCopy full SHA for bcf17fb
src/ch01-02-hello-world.md
@@ -119,8 +119,9 @@ Inside the `main` function is the following code:
119
```
120
121
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.
+screen. There are four important details to notice here.
+
124
+First, Rust style is to indent with four spaces, not a tab.
125
126
Second, `println!` calls a Rust macro. If it called a function instead, it
127
would be entered as `println` (without the `!`). We’ll discuss Rust macros in
0 commit comments