about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-05-05 09:24:16 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-05-05 09:24:16 +0530
commit4fb22164a25a90543474d33fd51159e80806c9c5 (patch)
treef4e4d58b9771a8bd09714600075508cda3eadb7e
parent9f50d62200a4d495ade0c26f809f0b0c63726e89 (diff)
parent86de427b2556d0f349ed0d31d0529ff9f241b9c9 (diff)
downloadrust-4fb22164a25a90543474d33fd51159e80806c9c5.tar.gz
rust-4fb22164a25a90543474d33fd51159e80806c9c5.zip
Rollup merge of #25099 - Eljay:master, r=steveklabnik
-rw-r--r--src/libcore/option.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/option.rs b/src/libcore/option.rs
index d1bc24bd9ba..8da28094be3 100644
--- a/src/libcore/option.rs
+++ b/src/libcore/option.rs
@@ -161,7 +161,7 @@ use slice;
 // `Iterator` is an enumeration with one type parameter and two variants,
 // which basically means it must be `Option`.
 
-/// The `Option` type. See [the module level documentation](../index.html) for more.
+/// The `Option` type. See [the module level documentation](index.html) for more.
 #[derive(Clone, Copy, PartialEq, PartialOrd, Eq, Ord, Debug, Hash)]
 #[stable(feature = "rust1", since = "1.0.0")]
 pub enum Option<T> {