Skip to content

Commit

Permalink
Rollup merge of #67280 - shalzz:patch-1, r=jonas-schievink
Browse files Browse the repository at this point in the history
docs: std::convert::From: Fix typo

Fix a minor typo
  • Loading branch information
Centril committed Dec 13, 2019
2 parents 0f30462 + 9abde64 commit d0cc289
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcore/convert/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit d0cc289

Please sign in to comment.