about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorElantsev Serj <elantsev@yandex-team.ru>2015-02-15 14:38:47 +0300
committerElantsev Serj <elantsev@yandex-team.ru>2015-02-15 14:38:47 +0300
commit336dd6c8f03db7d70731da18d89040b1cb7d4765 (patch)
tree3f22b1dabe2a135c84a0175428936dda826bcef3 /src
parent40571ec0b30ee5a43844b4426173a85e22dd69fb (diff)
downloadrust-336dd6c8f03db7d70731da18d89040b1cb7d4765.tar.gz
rust-336dd6c8f03db7d70731da18d89040b1cb7d4765.zip
book: link to a file with configs links
Diffstat (limited to 'src')
-rw-r--r--src/doc/trpl/hello-world.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/hello-world.md b/src/doc/trpl/hello-world.md
index 640f0109b06..a3b5d655fa7 100644
--- a/src/doc/trpl/hello-world.md
+++ b/src/doc/trpl/hello-world.md
@@ -89,7 +89,7 @@ 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](https://github.com/rust-lang/rust/tree/master/src/etc).
+editors](https://github.com/rust-lang/rust/tree/master/src/etc/CONFIGS.md).
 
 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