Skip to content

Commit 3e2bd2a

Browse files
committed
Don't suggest Into implements a reverse conversion
1 parent 32facd5 commit 3e2bd2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/conversion/from_into.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ fn main() {
4343
## `Into`
4444

4545
The [`Into`] trait is simply the reciprocal of the `From` trait. That is, if you
46-
have implemented the `From` trait for your type you get the `Into`
47-
implementation for free.
46+
have implemented the `From` trait for your type, `Into` will call it when
47+
necessary.
4848

4949
Using the `Into` trait will typically require specification of the type to
5050
convert into as the compiler is unable to determine this most of the time.

0 commit comments

Comments
 (0)