@@ -82,7 +82,7 @@ import kotlin.io.path.inputStream
8282 *
8383 * Fixed-width columns can occur, for instance, in multi-space delimited data, where the columns are separated
8484 * by multiple spaces instead of a single delimiter, so columns are visually aligned.
85- * Columns widths are determined by the header in the data (if present), or manually by setting
85+ * Column widths are determined by the header in the data (if present), or manually by setting
8686 * [fixedColumnWidths].
8787 * @param fixedColumnWidths The fixed column widths. Default: empty list.
8888 *
@@ -119,7 +119,7 @@ import kotlin.io.path.inputStream
119119 * @param ignoreEmptyLines Whether to skip intermediate empty lines. Default: `false`.
120120 *
121121 * If `false`, empty lines will be interpreted as having _empty_ values if [allowMissingColumns].
122- * @param allowMissingColumns Wether to allow rows with fewer columns than the header. Default: `true`.
122+ * @param allowMissingColumns Whether to allow rows with fewer columns than the header. Default: `true`.
123123 *
124124 * If `true`, rows that are too short will be interpreted as _empty_ values.
125125 * @param ignoreExcessColumns Whether to ignore rows with more columns than the header. Default: `true`.
@@ -137,7 +137,7 @@ import kotlin.io.path.inputStream
137137 * @param parseParallel Whether to parse the data in parallel. Default: `true`.
138138 *
139139 * If `true`, the data will be read and parsed in parallel by the Deephaven parser.
140- * This is usually faster, but can be turned off for debugging.
140+ * This is usually faster but can be turned off for debugging.
141141 */
142142public fun DataFrame.Companion.readCsv (
143143 path : Path ,
@@ -234,7 +234,7 @@ public fun DataFrame.Companion.readCsv(
234234 *
235235 * Fixed-width columns can occur, for instance, in multi-space delimited data, where the columns are separated
236236 * by multiple spaces instead of a single delimiter, so columns are visually aligned.
237- * Columns widths are determined by the header in the data (if present), or manually by setting
237+ * Column widths are determined by the header in the data (if present), or manually by setting
238238 * [fixedColumnWidths].
239239 * @param fixedColumnWidths The fixed column widths. Default: empty list.
240240 *
@@ -271,7 +271,7 @@ public fun DataFrame.Companion.readCsv(
271271 * @param ignoreEmptyLines Whether to skip intermediate empty lines. Default: `false`.
272272 *
273273 * If `false`, empty lines will be interpreted as having _empty_ values if [allowMissingColumns].
274- * @param allowMissingColumns Wether to allow rows with fewer columns than the header. Default: `true`.
274+ * @param allowMissingColumns Whether to allow rows with fewer columns than the header. Default: `true`.
275275 *
276276 * If `true`, rows that are too short will be interpreted as _empty_ values.
277277 * @param ignoreExcessColumns Whether to ignore rows with more columns than the header. Default: `true`.
@@ -289,7 +289,7 @@ public fun DataFrame.Companion.readCsv(
289289 * @param parseParallel Whether to parse the data in parallel. Default: `true`.
290290 *
291291 * If `true`, the data will be read and parsed in parallel by the Deephaven parser.
292- * This is usually faster, but can be turned off for debugging.
292+ * This is usually faster but can be turned off for debugging.
293293 */
294294public fun DataFrame.Companion.readCsv (
295295 file : File ,
@@ -386,7 +386,7 @@ public fun DataFrame.Companion.readCsv(
386386 *
387387 * Fixed-width columns can occur, for instance, in multi-space delimited data, where the columns are separated
388388 * by multiple spaces instead of a single delimiter, so columns are visually aligned.
389- * Columns widths are determined by the header in the data (if present), or manually by setting
389+ * Column widths are determined by the header in the data (if present), or manually by setting
390390 * [fixedColumnWidths].
391391 * @param fixedColumnWidths The fixed column widths. Default: empty list.
392392 *
@@ -423,7 +423,7 @@ public fun DataFrame.Companion.readCsv(
423423 * @param ignoreEmptyLines Whether to skip intermediate empty lines. Default: `false`.
424424 *
425425 * If `false`, empty lines will be interpreted as having _empty_ values if [allowMissingColumns].
426- * @param allowMissingColumns Wether to allow rows with fewer columns than the header. Default: `true`.
426+ * @param allowMissingColumns Whether to allow rows with fewer columns than the header. Default: `true`.
427427 *
428428 * If `true`, rows that are too short will be interpreted as _empty_ values.
429429 * @param ignoreExcessColumns Whether to ignore rows with more columns than the header. Default: `true`.
@@ -441,7 +441,7 @@ public fun DataFrame.Companion.readCsv(
441441 * @param parseParallel Whether to parse the data in parallel. Default: `true`.
442442 *
443443 * If `true`, the data will be read and parsed in parallel by the Deephaven parser.
444- * This is usually faster, but can be turned off for debugging.
444+ * This is usually faster but can be turned off for debugging.
445445 */
446446public fun DataFrame.Companion.readCsv (
447447 url : URL ,
@@ -538,7 +538,7 @@ public fun DataFrame.Companion.readCsv(
538538 *
539539 * Fixed-width columns can occur, for instance, in multi-space delimited data, where the columns are separated
540540 * by multiple spaces instead of a single delimiter, so columns are visually aligned.
541- * Columns widths are determined by the header in the data (if present), or manually by setting
541+ * Column widths are determined by the header in the data (if present), or manually by setting
542542 * [fixedColumnWidths].
543543 * @param fixedColumnWidths The fixed column widths. Default: empty list.
544544 *
@@ -575,7 +575,7 @@ public fun DataFrame.Companion.readCsv(
575575 * @param ignoreEmptyLines Whether to skip intermediate empty lines. Default: `false`.
576576 *
577577 * If `false`, empty lines will be interpreted as having _empty_ values if [allowMissingColumns].
578- * @param allowMissingColumns Wether to allow rows with fewer columns than the header. Default: `true`.
578+ * @param allowMissingColumns Whether to allow rows with fewer columns than the header. Default: `true`.
579579 *
580580 * If `true`, rows that are too short will be interpreted as _empty_ values.
581581 * @param ignoreExcessColumns Whether to ignore rows with more columns than the header. Default: `true`.
@@ -593,7 +593,7 @@ public fun DataFrame.Companion.readCsv(
593593 * @param parseParallel Whether to parse the data in parallel. Default: `true`.
594594 *
595595 * If `true`, the data will be read and parsed in parallel by the Deephaven parser.
596- * This is usually faster, but can be turned off for debugging.
596+ * This is usually faster but can be turned off for debugging.
597597 */
598598public fun DataFrame.Companion.readCsv (
599599 fileOrUrl : String ,
@@ -690,7 +690,7 @@ public fun DataFrame.Companion.readCsv(
690690 *
691691 * Fixed-width columns can occur, for instance, in multi-space delimited data, where the columns are separated
692692 * by multiple spaces instead of a single delimiter, so columns are visually aligned.
693- * Columns widths are determined by the header in the data (if present), or manually by setting
693+ * Column widths are determined by the header in the data (if present), or manually by setting
694694 * [fixedColumnWidths].
695695 * @param fixedColumnWidths The fixed column widths. Default: empty list.
696696 *
@@ -727,7 +727,7 @@ public fun DataFrame.Companion.readCsv(
727727 * @param ignoreEmptyLines Whether to skip intermediate empty lines. Default: `false`.
728728 *
729729 * If `false`, empty lines will be interpreted as having _empty_ values if [allowMissingColumns].
730- * @param allowMissingColumns Wether to allow rows with fewer columns than the header. Default: `true`.
730+ * @param allowMissingColumns Whether to allow rows with fewer columns than the header. Default: `true`.
731731 *
732732 * If `true`, rows that are too short will be interpreted as _empty_ values.
733733 * @param ignoreExcessColumns Whether to ignore rows with more columns than the header. Default: `true`.
@@ -745,7 +745,7 @@ public fun DataFrame.Companion.readCsv(
745745 * @param parseParallel Whether to parse the data in parallel. Default: `true`.
746746 *
747747 * If `true`, the data will be read and parsed in parallel by the Deephaven parser.
748- * This is usually faster, but can be turned off for debugging.
748+ * This is usually faster but can be turned off for debugging.
749749 * @param adjustCsvSpecs Optional extra [CsvSpecs] configuration. Default: `{ it }`.
750750 *
751751 * Before instantiating the [CsvSpecs], the [CsvSpecs.Builder] will be passed to this lambda.
0 commit comments