Fix stray ` in previous change

This commit is contained in:
Chris Gregory 2019-04-13 21:23:31 -05:00
parent 1e48da6c81
commit 1f5d510604

View file

@ -305,7 +305,7 @@ pub trait Into<T>: Sized {
///
/// # Generic Implementations
///
/// - `From<T>` for U` implies [`Into`]`<U> for T`
/// - `From<T> for U` implies [`Into`]`<U> for T`
/// - `From` is reflexive, which means that `From<T> for T` is implemented
///
/// # Examples