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 {
8282 /// # Errors
8383 ///
8484 /// 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.
8686 #[ inline]
8787 fn parse_float < S : AsRef < [ u8 ] > > ( s : S ) -> Result < Self > {
8888 let s = s. as_ref ( ) ;
@@ -115,7 +115,7 @@ impl FastFloat for f64 {}
115115/// # Errors
116116///
117117/// 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.
119119#[ inline]
120120pub fn parse < T : FastFloat , S : AsRef < [ u8 ] > > ( s : S ) -> Result < T > {
121121 T :: parse_float ( s)
You can’t perform that action at this time.
0 commit comments