]> git.proxmox.com Git - rustc.git/blobdiff - src/libcore/option.rs
Imported Upstream version 1.1.0+dfsg1
[rustc.git] / src / libcore / option.rs
index d1bc24bd9baa5d433906b708c25986302c7c81f4..8da28094be3aed3c007bd1469f45949cd80a05c7 100644 (file)
@@ -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> {