about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authormitaa <mitaa.ceb@gmail.com>2015-12-24 08:15:58 +0100
committermitaa <mitaa.ceb@gmail.com>2015-12-24 08:15:58 +0100
commit08222480e9232cc25f7884afe11264aeed0fc486 (patch)
treed0fd22d3f11a9020fa0298bbbc6364067b3f578d /src/libcore
parent4ce1dafd1d58852a88f38a0f63cb11236a7470cb (diff)
downloadrust-08222480e9232cc25f7884afe11264aeed0fc486.tar.gz
rust-08222480e9232cc25f7884afe11264aeed0fc486.zip
Fix link to `Formatter::debug_struct`
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 `#?`:
 ///