Skip to content

Commit 6438634

Browse files
committed
tiny dataframe-csv kdoc fixes
1 parent bde1dba commit 6438634

File tree

1 file changed

+3
-3
lines changed
  • dataframe-csv/src/main/kotlin/org/jetbrains/kotlinx/dataframe/documentation

1 file changed

+3
-3
lines changed

dataframe-csv/src/main/kotlin/org/jetbrains/kotlinx/dataframe/documentation/DelimParams.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ internal object DelimParams {
9393
*
9494
* Fixed-width columns can occur, for instance, in multi-space delimited data, where the columns are separated
9595
* by multiple spaces instead of a single delimiter, so columns are visually aligned.
96-
* Columns widths are determined by the header in the data (if present), or manually by setting
96+
* Column widths are determined by the header in the data (if present), or manually by setting
9797
* \[fixedColumnWidths\].
9898
*/
9999
const val HAS_FIXED_WIDTH_COLUMNS: Boolean = false
@@ -164,7 +164,7 @@ internal object DelimParams {
164164
const val IGNORE_EMPTY_LINES: Boolean = false
165165

166166
/**
167-
* @param allowMissingColumns Wether to allow rows with fewer columns than the header. Default: `true`.
167+
* @param allowMissingColumns Whether to allow rows with fewer columns than the header. Default: `true`.
168168
*
169169
* If `true`, rows that are too short will be interpreted as _empty_ values.
170170
*/
@@ -202,7 +202,7 @@ internal object DelimParams {
202202
* @param parseParallel Whether to parse the data in parallel. Default: `true`.
203203
*
204204
* If `true`, the data will be read and parsed in parallel by the Deephaven parser.
205-
* This is usually faster, but can be turned off for debugging.
205+
* This is usually faster but can be turned off for debugging.
206206
*/
207207
const val PARSE_PARALLEL: Boolean = true
208208

0 commit comments

Comments
 (0)