Rollup merge of #72072 - tspiteri:minus-inf, r=Dylan-DPC

doc: minus (U+2212) instead of dash (U+002D) for negative infinity

Like #67430, for the new associated constants.
This commit is contained in:
Dylan DPC 2020-05-11 22:21:03 +02:00 committed by GitHub
commit 6a8ac8b975
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -367,7 +367,7 @@ impl f32 {
/// Infinity (∞). /// Infinity (∞).
#[stable(feature = "assoc_int_consts", since = "1.43.0")] #[stable(feature = "assoc_int_consts", since = "1.43.0")]
pub const INFINITY: f32 = 1.0_f32 / 0.0_f32; pub const INFINITY: f32 = 1.0_f32 / 0.0_f32;
/// Negative infinity (-∞). /// Negative infinity (∞).
#[stable(feature = "assoc_int_consts", since = "1.43.0")] #[stable(feature = "assoc_int_consts", since = "1.43.0")]
pub const NEG_INFINITY: f32 = -1.0_f32 / 0.0_f32; pub const NEG_INFINITY: f32 = -1.0_f32 / 0.0_f32;

View File

@ -366,7 +366,7 @@ impl f64 {
/// Infinity (∞). /// Infinity (∞).
#[stable(feature = "assoc_int_consts", since = "1.43.0")] #[stable(feature = "assoc_int_consts", since = "1.43.0")]
pub const INFINITY: f64 = 1.0_f64 / 0.0_f64; pub const INFINITY: f64 = 1.0_f64 / 0.0_f64;
/// Negative infinity (-∞). /// Negative infinity (∞).
#[stable(feature = "assoc_int_consts", since = "1.43.0")] #[stable(feature = "assoc_int_consts", since = "1.43.0")]
pub const NEG_INFINITY: f64 = -1.0_f64 / 0.0_f64; pub const NEG_INFINITY: f64 = -1.0_f64 / 0.0_f64;