@@ -56,7 +56,7 @@ export interface Info {
5656
5757export interface InfoCallback extends Info {
5858 /**
59- * Normalized verion of `options.columns` when `options.columns` is true, boolean otherwise.
59+ * Normalized version of `options.columns` when `options.columns` is true, boolean otherwise.
6060 */
6161 readonly columns : boolean | { name : string } [ ] | { disabled : true } [ ] ;
6262}
@@ -178,7 +178,7 @@ export interface OptionsNormalized<T = string[], U = T> {
178178 */
179179 ltrim : boolean ;
180180 /**
181- * Maximum numer of characters to be contained in the field and line buffers before an exception is raised,
181+ * Maximum number of characters to be contained in the field and line buffers before an exception is raised,
182182 * used to guard against a wrong delimiter or record_delimiter,
183183 * default to 128000 characters.
184184 */
@@ -354,7 +354,7 @@ export interface Options<T = string[], U = T> {
354354 */
355355 ltrim ?: boolean | null ;
356356 /**
357- * Maximum numer of characters to be contained in the field and line buffers before an exception is raised,
357+ * Maximum number of characters to be contained in the field and line buffers before an exception is raised,
358358 * used to guard against a wrong delimiter or record_delimiter,
359359 * default to 128000 characters.
360360 */
@@ -370,7 +370,7 @@ export interface Options<T = string[], U = T> {
370370 on_record ?: ( record : U , context : InfoRecord ) => T | null | undefined | U ;
371371 onRecord ?: ( record : U , context : InfoRecord ) => T | null | undefined | U ;
372372 /**
373- * Function called when an error occured if the `skip_records_with_error`
373+ * Function called when an error occurred if the `skip_records_with_error`
374374 * option is activated.
375375 */
376376 on_skip ?: ( err : CsvError | undefined , raw : string | undefined ) => undefined ;
0 commit comments