Fix mistake in my markdown

This commit is contained in:
Ethan Brierley 2018-11-06 08:37:25 +00:00
parent c3f0c9419e
commit 3dc56b7d9c

View File

@ -4780,9 +4780,11 @@ pub struct ParseIntError {
#[non_exhaustive]
pub enum IntErrorKind {
/// Value being parsed is empty.
///
/// Among other causes, this variant will be constructed when parsing an empty string.
Empty,
/// Contains an invalid digit.
///
/// Among other causes, this variant will be constructed when parsing a string that
/// contains a letter.
InvalidDigit,