Skip to content

Commit f001441

Browse files
authored
Merge pull request #1307 from kornelski/into
Don't suggest Into implements a reverse conversion
2 parents bbb0a50 + 3e2bd2a commit f001441

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/conversion/from_into.md

+2-2
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)