From dffd18fafc5ffe41b958bf9cacc0c3a6ef257348 Mon Sep 17 00:00:00 2001 From: Jonathan Giddy Date: Sat, 7 Mar 2020 08:21:27 +0000 Subject: [PATCH] Correct version that relaxed orphan rules --- src/libcore/convert/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/convert/mod.rs b/src/libcore/convert/mod.rs index 959fd63df51c2..47ab8715cfa14 100644 --- a/src/libcore/convert/mod.rs +++ b/src/libcore/convert/mod.rs @@ -229,7 +229,7 @@ pub trait AsMut { /// /// # Implementing [`Into`] for conversions to external types in old versions of Rust /// -/// Prior to Rust 1.40, if the destination type was not part of the current crate +/// Prior to Rust 1.41, if the destination type was not part of the current crate /// then you couldn't implement [`From`] directly. /// For example, take this code: ///