std.csv: use proper block comments

This commit is contained in:
Walter Bright 2017-02-09 13:20:55 -08:00
parent 140aa0da1f
commit 06e758a25f

View file

@ -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
} }
/** /**