File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ pub const NAN: f32 = 0.0_f32 / 0.0_f32;
62
62
/// Infinity (∞).
63
63
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
64
64
pub const INFINITY : f32 = 1.0_f32 / 0.0_f32 ;
65
- /// Negative infinity (- ∞).
65
+ /// Negative infinity (− ∞).
66
66
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
67
67
pub const NEG_INFINITY : f32 = -1.0_f32 / 0.0_f32 ;
68
68
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ pub const NAN: f64 = 0.0_f64 / 0.0_f64;
62
62
/// Infinity (∞).
63
63
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
64
64
pub const INFINITY : f64 = 1.0_f64 / 0.0_f64 ;
65
- /// Negative infinity (- ∞).
65
+ /// Negative infinity (− ∞).
66
66
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
67
67
pub const NEG_INFINITY : f64 = -1.0_f64 / 0.0_f64 ;
68
68
You can’t perform that action at this time.
0 commit comments