mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-01 07:41:12 +00:00
expand some comments
This commit is contained in:
parent
b7c35665aa
commit
732496231c
2 changed files with 7 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue