1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 19:47:45 +00:00

sort: fix whitespace and spelling

This commit is contained in:
Joseph Crail 2016-03-25 00:40:12 -04:00
parent cc63565051
commit 2cdccb10bb

View file

@ -160,7 +160,7 @@ fn permissive_f64_parse(a: &str) -> f64{
} }
} }
/// Compares two floating point numbers, with errors being assumned to be -inf. /// Compares two floating point numbers, with errors being assumed to be -inf.
/// Stops coercing at the first whitespace char, so 1e2 will parse as 100 but /// Stops coercing at the first whitespace char, so 1e2 will parse as 100 but
/// 1,000 will parse as -inf. /// 1,000 will parse as -inf.
fn numeric_compare(a: &String, b: &String) -> Ordering { fn numeric_compare(a: &String, b: &String) -> Ordering {