Skip to content

Commit 06e758a

Browse files
committed
std.csv: use proper block comments
1 parent 140aa0d commit 06e758a

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

std/csv.d

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -167,11 +167,13 @@ class CSVException : Exception
167167
*/
168168
class IncompleteCellException : CSVException
169169
{
170-
/// Data pulled from input before finding a problem
171-
///
172-
/// This field is populated when using $(LREF csvReader)
173-
/// but not by $(LREF csvNextToken) as this data will have
174-
/// already been fed to the output range.
170+
/**
171+
* Data pulled from input before finding a problem
172+
*
173+
* This field is populated when using $(LREF csvReader)
174+
* but not by $(LREF csvNextToken) as this data will have
175+
* already been fed to the output range.
176+
*/
175177
dstring partialData;
176178

177179
mixin basicExceptionCtors;
@@ -234,10 +236,8 @@ class HeaderMismatchException : CSVException
234236
*/
235237
enum Malformed
236238
{
237-
/// No exceptions are thrown due to incorrect CSV.
238-
ignore,
239-
/// Use exceptions when input has incorrect CSV.
240-
throwException
239+
ignore, /// No exceptions are thrown due to incorrect CSV.
240+
throwException /// Use exceptions when input has incorrect CSV.
241241
}
242242

243243
/**

0 commit comments

Comments
 (0)