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:
Ejez 2021-01-07 07:47:03 +03:00 committed by GitHub
parent 5b3d52414e
commit 2b8109f229
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2175,7 +2175,7 @@ impl 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