about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorPaul Lange <palango@gmx.de>2016-09-28 23:59:56 +0200
committerPaul Lange <palango@gmx.de>2016-09-29 00:02:02 +0200
commitc48b7abd4c19d2cd7337a521d4905b93647f8d66 (patch)
tree99abaef22d5788d2ae131a69bd0e5f7f3ae2bee2 /src
parentdcc8d578a0287093a816605408c8893df9cf1de7 (diff)
downloadrust-c48b7abd4c19d2cd7337a521d4905b93647f8d66.tar.gz
rust-c48b7abd4c19d2cd7337a521d4905b93647f8d66.zip
Add link to format! docs
Diffstat (limited to 'src')
-rw-r--r--src/libcollections/macros.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libcollections/macros.rs b/src/libcollections/macros.rs
index d6a8362d581..3115be00a4d 100644
--- a/src/libcollections/macros.rs
+++ b/src/libcollections/macros.rs
@@ -68,7 +68,9 @@ macro_rules! vec {
 }
 
 /// Use the syntax described in `std::fmt` to create a value of type `String`.
-/// See `std::fmt` for more information.
+/// See [`std::fmt`][fmt] for more information.
+///
+/// [fmt]: ../std/fmt/index.html
 ///
 /// # Examples
 ///