Rollup merge of #80769 - ejez:patch-1, r=jonas-schievink

Improve wording of parse doc

Change:
```
`parse` can parse any type that...
```
to:
```
`parse` can parse into any type that...
```
Word `into` added to be more precise and in coherence with other parts of the doc.
This commit is contained in:
Yuki Okushi 2021-01-08 02:06:16 +09:00 committed by GitHub
commit a97dc5f103
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2175,7 +2175,7 @@ pub fn trim_right_matches<'a, P>(&'a self, pat: P) -> &'a str
/// helps the inference algorithm understand specifically which type
/// you're trying to parse into.
///
/// `parse` can parse any type that implements the [`FromStr`] trait.
/// `parse` can parse into any type that implements the [`FromStr`] trait.
///
/// # Errors