Rollup merge of #67280 - shalzz:patch-1, r=jonas-schievink

docs: std::convert::From: Fix typo

Fix a minor typo
This commit is contained in:
Mazdak Farrokhzad 2019-12-13 20:35:37 +01:00 committed by GitHub
commit d0cc289ec0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -291,7 +291,7 @@ pub trait Into<T>: 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.