Clarify text about four spaces

Fixes #309.
This commit is contained in:
Carol (Nichols || Goulding) 2016-11-24 21:52:17 -05:00
parent a65c604ca6
commit 9d60b73816

View File

@ -95,8 +95,8 @@ Inside the `main` function:
```
This line does all of the work in this little program: it prints text to the
screen. There are a number of details that are important here. The first is
that its indented with four spaces, not a tab.
screen. There are a number of details to notice here. The first is that Rust
style is to indent with four spaces, not a tab.
The second important part is `println!`. This is calling a Rust *macro*,
which is how metaprogramming is done in Rust. If it were calling a function