File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ pub trait FastFloat: float::Float {
82
82
/// # Errors
83
83
///
84
84
/// Will return an error either if the string is not a valid decimal number.
85
- /// or if any characterse are left remaining unparsed.
85
+ /// or if any characters are left remaining unparsed.
86
86
#[ inline]
87
87
fn parse_float < S : AsRef < [ u8 ] > > ( s : S ) -> Result < Self > {
88
88
let s = s. as_ref ( ) ;
@@ -115,7 +115,7 @@ impl FastFloat for f64 {}
115
115
/// # Errors
116
116
///
117
117
/// Will return an error either if the string is not a valid decimal number
118
- /// or if any characterse are left remaining unparsed.
118
+ /// or if any characters are left remaining unparsed.
119
119
#[ inline]
120
120
pub fn parse < T : FastFloat , S : AsRef < [ u8 ] > > ( s : S ) -> Result < T > {
121
121
T :: parse_float ( s)
You can’t perform that action at this time.
0 commit comments