mirror of
https://github.com/dlang/phobos.git
synced 2025-04-28 22:21:09 +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
|
class IncompleteCellException : CSVException
|
||||||
{
|
{
|
||||||
/// Data pulled from input before finding a problem
|
/**
|
||||||
///
|
* 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
|
* This field is populated when using $(LREF csvReader)
|
||||||
/// already been fed to the output range.
|
* but not by $(LREF csvNextToken) as this data will have
|
||||||
|
* already been fed to the output range.
|
||||||
|
*/
|
||||||
dstring partialData;
|
dstring partialData;
|
||||||
|
|
||||||
mixin basicExceptionCtors;
|
mixin basicExceptionCtors;
|
||||||
|
@ -234,10 +236,8 @@ class HeaderMismatchException : CSVException
|
||||||
*/
|
*/
|
||||||
enum Malformed
|
enum Malformed
|
||||||
{
|
{
|
||||||
/// No exceptions are thrown due to incorrect CSV.
|
ignore, /// No exceptions are thrown due to incorrect CSV.
|
||||||
ignore,
|
throwException /// Use exceptions when input has incorrect CSV.
|
||||||
/// Use exceptions when input has incorrect CSV.
|
|
||||||
throwException
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue