From 3e2bd2aa042c2bd916b66670cadf184deabdbb60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kornel=20Lesin=CC=81ski?= Date: Mon, 17 Feb 2020 15:32:59 +0000 Subject: [PATCH] Don't suggest Into implements a reverse conversion --- src/conversion/from_into.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/conversion/from_into.md b/src/conversion/from_into.md index 9be8bc24ad..266d10f285 100644 --- a/src/conversion/from_into.md +++ b/src/conversion/from_into.md @@ -43,8 +43,8 @@ fn main() { ## `Into` The [`Into`] trait is simply the reciprocal of the `From` trait. That is, if you -have implemented the `From` trait for your type you get the `Into` -implementation for free. +have implemented the `From` trait for your type, `Into` will call it when +necessary. Using the `Into` trait will typically require specification of the type to convert into as the compiler is unable to determine this most of the time.