about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-12-29 15:55:09 -0500
committerSteve Klabnik <steve@steveklabnik.com>2015-12-29 15:55:09 -0500
commitbfa36c9ab88cbae88b29df724a1e66b797a21d7b (patch)
treee93152cbbc5de3351ec053c1930b352646cb8182 /src/libcore
parentccaa7e5146ba0ee47d3b7301121a05da6e484f49 (diff)
parent08222480e9232cc25f7884afe11264aeed0fc486 (diff)
Rollup merge of #30549 - mitaa:doc_dstruct, r=brson
(reported in #30477)
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/fmt/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/fmt/mod.rs b/src/libcore/fmt/mod.rs
index 04676c0c9c8..628bf654873 100644
--- a/src/libcore/fmt/mod.rs
+++ b/src/libcore/fmt/mod.rs
@@ -356,7 +356,7 @@ impl<'a> Display for Arguments<'a> {
 /// `Debug` implementations using either `derive` or the debug builder API
 /// on `Formatter` support pretty printing using the alternate flag: `{:#?}`.
 ///
-/// [debug_struct]: ../std/fmt/struct.Formatter.html#method.debug_struct
+/// [debug_struct]: ../../std/fmt/struct.Formatter.html#method.debug_struct
 ///
 /// Pretty printing with `#?`:
 ///