File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -1460,7 +1460,10 @@ where
1460
1460
) ) ( input)
1461
1461
}
1462
1462
1463
- /// Recognizes a floating point number in text format and returns the integer, fraction and exponent parts of the input data
1463
+ /// Recognizes a floating point number in text format
1464
+ ///
1465
+ /// It returns a tuple of (`sign`, `integer part`, `fraction part` and `exponent`) of the input
1466
+ /// data.
1464
1467
///
1465
1468
/// *Complete version*: Can parse until the end of input.
1466
1469
///
Original file line number Diff line number Diff line change @@ -1429,7 +1429,10 @@ where
1429
1429
) ) ( input)
1430
1430
}
1431
1431
1432
- /// Recognizes a floating point number in text format and returns the integer, fraction and exponent parts of the input data
1432
+ /// Recognizes a floating point number in text format
1433
+ ///
1434
+ /// It returns a tuple of (`sign`, `integer part`, `fraction part` and `exponent`) of the input
1435
+ /// data.
1433
1436
///
1434
1437
/// *Streaming version*: Will return `Err(nom::Err::Incomplete(_))` if there is not enough data.
1435
1438
///
You can’t perform that action at this time.
0 commit comments