Skip to content

Commit 5fa4f29

Browse files
committed
(Fix a typo)
1 parent 58e2346 commit 5fa4f29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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]
120120
pub fn parse<T: FastFloat, S: AsRef<[u8]>>(s: S) -> Result<T> {
121121
T::parse_float(s)

0 commit comments

Comments
 (0)