about summary refs log tree commit diff
path: root/src/doc/style/errors
diff options
context:
space:
mode:
authorSimon Mazur <semmaz.box@gmail.com>2015-09-18 17:12:58 +0300
committerSimon Mazur <semmaz.box@gmail.com>2015-09-20 13:24:47 +0300
commit970b86b1bb61eeff8b32372e2a1d5486945f47d1 (patch)
treeb3898831b88cbbd5988e46010cc6cee9271c2c89 /src/doc/style/errors
parentb8cfa59be0a6b5200e525ff68390ede34698e909 (diff)
downloadrust-970b86b1bb61eeff8b32372e2a1d5486945f47d1.tar.gz
rust-970b86b1bb61eeff8b32372e2a1d5486945f47d1.zip
doc: Fix broken links
Diffstat (limited to 'src/doc/style/errors')
-rw-r--r--src/doc/style/errors/ergonomics.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/style/errors/ergonomics.md b/src/doc/style/errors/ergonomics.md
index 0985475f56a..a404d25bf37 100644
--- a/src/doc/style/errors/ergonomics.md
+++ b/src/doc/style/errors/ergonomics.md
@@ -57,7 +57,7 @@ fn write_info(info: &Info) -> Result<(), IoError> {
 ```
 
 See
-[the `result` module documentation](https://doc.rust-lang.org/stable/std/result/index.html#the-try!-macro)
+[the `result` module documentation](https://doc.rust-lang.org/stable/std/result/index.html#the-try-macro)
 for more details.
 
 ### The `Result`-`impl` pattern [FIXME]