diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-09-17 08:49:08 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-09-17 08:49:08 -0700 |
| commit | b27947ac4deafe2dde04353802f889de0dc364ba (patch) | |
| tree | a6853136414f78d1cf993fb63e58838096285e26 | |
| parent | b4bff574d2e40ca71a07b661854df894f6a16eef (diff) | |
| parent | 2ee91ea43741eb19a684ffb66e074f15e289ffa3 (diff) | |
| download | rust-b27947ac4deafe2dde04353802f889de0dc364ba.tar.gz rust-b27947ac4deafe2dde04353802f889de0dc364ba.zip | |
rollup merge of #17278 : steveklabnik/gh17242
| -rw-r--r-- | src/doc/guide.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/guide.md b/src/doc/guide.md index 4bfe3854dba..9c662b032bf 100644 --- a/src/doc/guide.md +++ b/src/doc/guide.md @@ -185,8 +185,8 @@ Next up is this line: This line does all of the work in our little program. There are a number of details that are important here. The first is that it's indented with four spaces, not tabs. Please configure your editor of choice to insert four spaces -with the tab key. We provide some sample configurations for various editors -[here](https://github.com/rust-lang/rust/tree/master/src/etc). +with the tab key. We provide some [sample configurations for various +editors](https://github.com/rust-lang/rust/tree/master/src/etc). The second point is the `println!()` part. This is calling a Rust **macro**, which is how metaprogramming is done in Rust. If it were a function instead, it |
