Fix incorrect documentation

This commit is contained in:
Ethan Brierley
2018-11-07 08:38:34 +00:00
parent 11ee29a813
commit d0bac148f7

View File

@@ -4788,9 +4788,9 @@ pub enum IntErrorKind {
/// Among other causes, this variant will be constructed when parsing a string that
/// contains a letter.
InvalidDigit,
/// Integer is too small to store in target integer type.
Overflow,
/// Integer is too large to store in target integer type.
Overflow,
/// Integer is too small to store in target integer type.
Underflow,
}