From 3dc56b7d9c81cdfb400cf6b937f12ee3b7e3b6b9 Mon Sep 17 00:00:00 2001 From: Ethan Brierley Date: Tue, 6 Nov 2018 08:37:25 +0000 Subject: [PATCH] Fix mistake in my markdown --- src/libcore/num/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libcore/num/mod.rs b/src/libcore/num/mod.rs index b8f291f6d05..f31ce033649 100644 --- a/src/libcore/num/mod.rs +++ b/src/libcore/num/mod.rs @@ -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,