File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -167,11 +167,13 @@ class CSVException : Exception
167167 */
168168class 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*/
235237enum 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/**
You can’t perform that action at this time.
0 commit comments