mirror of
https://github.com/dlang/phobos.git
synced 2025-04-27 13:40:20 +03:00
std.csv: use proper block comments
This commit is contained in:
parent
140aa0da1f
commit
06e758a25f
1 changed files with 9 additions and 9 deletions
18
std/csv.d
18
std/csv.d
|
@ -167,11 +167,13 @@ class CSVException : Exception
|
|||
*/
|
||||
class IncompleteCellException : CSVException
|
||||
{
|
||||
/// Data pulled from input before finding a problem
|
||||
///
|
||||
/// This field is populated when using $(LREF csvReader)
|
||||
/// but not by $(LREF csvNextToken) as this data will have
|
||||
/// already been fed to the output range.
|
||||
/**
|
||||
* Data pulled from input before finding a problem
|
||||
*
|
||||
* This field is populated when using $(LREF csvReader)
|
||||
* but not by $(LREF csvNextToken) as this data will have
|
||||
* already been fed to the output range.
|
||||
*/
|
||||
dstring partialData;
|
||||
|
||||
mixin basicExceptionCtors;
|
||||
|
@ -234,10 +236,8 @@ class HeaderMismatchException : CSVException
|
|||
*/
|
||||
enum Malformed
|
||||
{
|
||||
/// No exceptions are thrown due to incorrect CSV.
|
||||
ignore,
|
||||
/// Use exceptions when input has incorrect CSV.
|
||||
throwException
|
||||
ignore, /// No exceptions are thrown due to incorrect CSV.
|
||||
throwException /// Use exceptions when input has incorrect CSV.
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue