expand some comments

This commit is contained in:
Folkert 2020-07-08 14:30:48 +02:00
parent b7c35665aa
commit 732496231c
2 changed files with 7 additions and 1 deletions

View file

@ -121,8 +121,13 @@ pub fn finish_parsing_float(raw: &str) -> Result<f64, (&str, FloatErrorKind)> {
}
}
/// Integer parsing code taken from the rust stdlib,
/// Integer parsing code taken from the rust libcore,
/// pulled in so we can give custom error messages
///
/// The Rust Project is dual-licensed under Apache 2.0 and MIT terms.
/// As roc is Apache licensed, we use this rust code under the apache 2.0 license
///
/// Thanks to the rust-lang project and its contributors
trait FromStrRadixHelper: PartialOrd + Copy {
fn min_value() -> Self;