about summary refs log tree commit diff
path: root/src/doc/style/errors
diff options
context:
space:
mode:
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]