about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndrew Kensler <andrew@eastfarthing.com>2015-05-15 16:04:42 -0400
committerSteve Klabnik <steve@steveklabnik.com>2015-05-15 16:04:57 -0400
commitc40708d964eeda1ec436fac1552de95ba8859065 (patch)
treea0a3dcaccf457aaf61672e0cbb49642c93e530b5
parentb948d81c44e20cdcbe32b27758e6259d174fc0fb (diff)
downloadrust-c40708d964eeda1ec436fac1552de95ba8859065.tar.gz
rust-c40708d964eeda1ec436fac1552de95ba8859065.zip
Fix link in stdlib main page docs
-rw-r--r--src/libstd/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index 2e48cde18f3..048af8eae1d 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -60,7 +60,7 @@
 //! [`FromStr`](str/trait.FromStr.html) trait.
 //!
 //! Data may be shared by placing it in a reference-counted box or the
-//! [`Rc`][rc/index.html] type, and if further contained in a [`Cell`
+//! [`Rc`](rc/index.html) type, and if further contained in a [`Cell`
 //! or `RefCell`](cell/index.html), may be mutated as well as shared.
 //! Likewise, in a concurrent setting it is common to pair an
 //! atomically-reference-counted box, [`Arc`](sync/struct.Arc.html),