From 9abde64a4ec36469612ad0da99893d9ee817d32c Mon Sep 17 00:00:00 2001 From: Shaleen Jain Date: Fri, 13 Dec 2019 23:20:02 +0530 Subject: [PATCH] docs: std::convert::From: Fix typo Fix a minor typo --- 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 5414d9ac234..b7db3e4197d 100644 --- a/src/libcore/convert/mod.rs +++ b/src/libcore/convert/mod.rs @@ -291,7 +291,7 @@ pub trait Into: Sized { /// [`Into`]. /// /// One should always prefer implementing `From` over [`Into`] -/// because implementing `From` automatically provides one with a implementation of [`Into`] +/// because implementing `From` automatically provides one with an implementation of [`Into`] /// thanks to the blanket implementation in the standard library. /// /// Only implement [`Into`] if a conversion to a type outside the current crate is required.