File tree 1 file changed +16
-4
lines changed
dataframe-csv/src/main/kotlin/org/jetbrains/kotlinx/dataframe/documentation
1 file changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -18,16 +18,28 @@ import org.jetbrains.kotlinx.dataframe.io.QuoteMode
18
18
@Suppress(" ktlint:standard:class-naming" , " ClassName" , " KDocUnresolvedReference" )
19
19
internal object DelimParams {
20
20
21
- /* * @param path The file path to read. Can also be compressed as `.gz` or `.zip`, see [Compression]. */
21
+ /* *
22
+ * @param path The file path to read.
23
+ * Can also be compressed as `.gz` or `.zip`, see [Compression][org.jetbrains.kotlinx.dataframe.io.Compression].
24
+ */
22
25
interface PATH_READ
23
26
24
- /* * @param file The file to read. Can also be compressed as `.gz` or `.zip`, see [Compression]. */
27
+ /* *
28
+ * @param file The file to read.
29
+ * Can also be compressed as `.gz` or `.zip`, see [Compression][org.jetbrains.kotlinx.dataframe.io.Compression].
30
+ */
25
31
interface FILE_READ
26
32
27
- /* * @param url The URL from which to fetch the data. Can also be compressed as `.gz` or `.zip`, see [Compression]. */
33
+ /* *
34
+ * @param url The URL from which to fetch the data.
35
+ * Can also be compressed as `.gz` or `.zip`, see [Compression][org.jetbrains.kotlinx.dataframe.io.Compression].
36
+ */
28
37
interface URL_READ
29
38
30
- /* * @param fileOrUrl The file path or URL to read the data from. Can also be compressed as `.gz` or `.zip`, see [Compression]. */
39
+ /* *
40
+ * @param fileOrUrl The file path or URL to read the data from.
41
+ * Can also be compressed as `.gz` or `.zip`, see [Compression][org.jetbrains.kotlinx.dataframe.io.Compression].
42
+ */
31
43
interface FILE_OR_URL_READ
32
44
33
45
/* * @param inputStream Represents the file to read. */
You can’t perform that action at this time.
0 commit comments