From 86de427b2556d0f349ed0d31d0529ff9f241b9c9 Mon Sep 17 00:00:00 2001 From: Lee Jeffery Date: Mon, 4 May 2015 17:53:08 +0100 Subject: [PATCH] Fix incorrect link in Option documentation. --- src/libcore/option.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/option.rs b/src/libcore/option.rs index d1bc24bd9baa5..8da28094be3ae 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 {