File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1595,7 +1595,7 @@ where
1595
1595
*/
1596
1596
let ( i, s) = recognize_float_or_exceptions ( input) ?;
1597
1597
match s. parse_to ( ) {
1598
- Some ( f) => ( Ok ( ( i, f) ) ) ,
1598
+ Some ( f) => Ok ( ( i, f) ) ,
1599
1599
None => Err ( crate :: Err :: Error ( E :: from_error_kind (
1600
1600
i,
1601
1601
crate :: error:: ErrorKind :: Float ,
@@ -1648,7 +1648,7 @@ where
1648
1648
*/
1649
1649
let ( i, s) = recognize_float_or_exceptions ( input) ?;
1650
1650
match s. parse_to ( ) {
1651
- Some ( f) => ( Ok ( ( i, f) ) ) ,
1651
+ Some ( f) => Ok ( ( i, f) ) ,
1652
1652
None => Err ( crate :: Err :: Error ( E :: from_error_kind (
1653
1653
i,
1654
1654
crate :: error:: ErrorKind :: Float ,
Original file line number Diff line number Diff line change @@ -1567,7 +1567,7 @@ where
1567
1567
*/
1568
1568
let ( i, s) = recognize_float_or_exceptions ( input) ?;
1569
1569
match s. parse_to ( ) {
1570
- Some ( f) => ( Ok ( ( i, f) ) ) ,
1570
+ Some ( f) => Ok ( ( i, f) ) ,
1571
1571
None => Err ( crate :: Err :: Error ( E :: from_error_kind (
1572
1572
i,
1573
1573
crate :: error:: ErrorKind :: Float ,
@@ -1621,7 +1621,7 @@ where
1621
1621
*/
1622
1622
let ( i, s) = recognize_float_or_exceptions ( input) ?;
1623
1623
match s. parse_to ( ) {
1624
- Some ( f) => ( Ok ( ( i, f) ) ) ,
1624
+ Some ( f) => Ok ( ( i, f) ) ,
1625
1625
None => Err ( crate :: Err :: Error ( E :: from_error_kind (
1626
1626
i,
1627
1627
crate :: error:: ErrorKind :: Float ,
You can’t perform that action at this time.
0 commit comments