diff options
| author | Jonathan Turner <jonathandturner@users.noreply.github.com> | 2016-09-28 20:21:53 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-09-28 20:21:53 -0700 |
| commit | f12f9504b33b3e98952bc2bbca41fe0b81fac6fe (patch) | |
| tree | 2db8c485f210039bc152b0181967c560bcfe03ce /src | |
| parent | 02c050644bf2361dad41557b2972d6bf84604e74 (diff) | |
| parent | c48b7abd4c19d2cd7337a521d4905b93647f8d66 (diff) | |
| download | rust-f12f9504b33b3e98952bc2bbca41fe0b81fac6fe.tar.gz rust-f12f9504b33b3e98952bc2bbca41fe0b81fac6fe.zip | |
Rollup merge of #36813 - palango:link-to-fmt, r=steveklabnik
Add link to format! docs
Diffstat (limited to 'src')
| -rw-r--r-- | src/libcollections/macros.rs | 4 |
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 /// |
