From c48b7abd4c19d2cd7337a521d4905b93647f8d66 Mon Sep 17 00:00:00 2001 From: Paul Lange Date: Wed, 28 Sep 2016 23:59:56 +0200 Subject: [PATCH] Add link to format! docs --- src/libcollections/macros.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/libcollections/macros.rs b/src/libcollections/macros.rs index d6a8362d58182..3115be00a4d72 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 ///