abs_sub: fix typo 0[-:][+.]0

This commit is contained in:
icecream17 2023-06-10 10:45:50 -05:00 committed by GitHub
parent 4b71d79c97
commit 83d7826753
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -528,7 +528,7 @@ impl f32 {
/// The positive difference of two numbers.
///
/// * If `self <= other`: `0:0`
/// * If `self <= other`: `0.0`
/// * Else: `self - other`
///
/// # Examples

View File

@ -530,7 +530,7 @@ impl f64 {
/// The positive difference of two numbers.
///
/// * If `self <= other`: `0:0`
/// * If `self <= other`: `0.0`
/// * Else: `self - other`
///
/// # Examples