@@ -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[]> {
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 */
@@ -353,7 +353,7 @@ export interface Options<T = string[]> {
353353 */
354354 ltrim ?: boolean | null ;
355355 /**
356- * Maximum numer of characters to be contained in the field and line buffers before an exception is raised,
356+ * Maximum number of characters to be contained in the field and line buffers before an exception is raised,
357357 * used to guard against a wrong delimiter or record_delimiter,
358358 * default to 128000 characters.
359359 */
@@ -369,7 +369,7 @@ export interface Options<T = string[]> {
369369 on_record ?: ( record : T , context : InfoRecord ) => T | null | undefined ;
370370 onRecord ?: ( record : T , context : InfoRecord ) => T | null | undefined ;
371371 /**
372- * Function called when an error occured if the `skip_records_with_error`
372+ * Function called when an error occurred if the `skip_records_with_error`
373373 * option is activated.
374374 */
375375 on_skip ?: ( err : CsvError | undefined , raw : string | undefined ) => undefined ;
0 commit comments