Rollup merge of #58600 - llogiq:documentation-tests-typo, r=frewsxcv

fix small documentation typo

Thanks to @stjepang for catching my mistake.
This commit is contained in:
Mazdak Farrokhzad 2019-02-22 14:58:07 +01:00 committed by GitHub
commit 575a209624
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -244,7 +244,7 @@ disambiguate the error type:
/// use std::io;
/// let mut input = String::new();
/// io::stdin().read_line(&mut input)?;
/// # Ok::<(), io:Error>(())
/// # Ok::<(), io::Error>(())
/// ```
```