Skip to content

Commit f09ae8d

Browse files
authored
Improve documentation of splitCsv operator (#6131)
Signed-off-by: Ben Sherman <bentshermann@gmail.com>
1 parent a5b7a5d commit f09ae8d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/reference/operator.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1058,7 +1058,7 @@ See also: [tap](#tap)
10581058

10591059
*Returns: queue channel*
10601060

1061-
The `splitCsv` operator parses and splits [CSV-formatted](http://en.wikipedia.org/wiki/Comma-separated_values) text from a source channel into records, or groups of records with a given size.
1061+
The `splitCsv` operator parses and splits [CSV](http://en.wikipedia.org/wiki/Comma-separated_values) files or text from a source channel into records.
10621062

10631063
For example:
10641064

@@ -1130,7 +1130,7 @@ Available options:
11301130

11311131
*Returns: queue channel*
11321132

1133-
The `splitFasta` operator splits [FASTA-formatted](http://en.wikipedia.org/wiki/FASTA_format) text from a source channel into individual sequences.
1133+
The `splitFasta` operator splits [FASTA](http://en.wikipedia.org/wiki/FASTA_format) files or text from a source channel into individual sequences.
11341134

11351135
The `by` option can be used to group sequences into chunks of a given size. The following example shows how to read a FASTA file and split it into chunks of 10 sequences each:
11361136

@@ -1202,7 +1202,7 @@ See also: [countFasta](#countfasta)
12021202

12031203
*Returns: queue channel*
12041204

1205-
The `splitFastq` operator splits [FASTQ formatted](http://en.wikipedia.org/wiki/FASTQ_format) text from a source channel into individual sequences.
1205+
The `splitFastq` operator splits [FASTQ](http://en.wikipedia.org/wiki/FASTQ_format) files or text from a source channel into individual sequences.
12061206

12071207
The `by` option can be used to group sequences into chunks of a given size. The following example shows how to read a FASTQ file and split it into chunks of 10 sequences each:
12081208

@@ -1285,7 +1285,7 @@ See also: [countFastq](#countfastq)
12851285

12861286
*Returns: queue channel*
12871287

1288-
The `splitJson` operator splits [JSON formatted](https://en.wikipedia.org/wiki/JSON) text from a source channel into individual records.
1288+
The `splitJson` operator splits [JSON](https://en.wikipedia.org/wiki/JSON) files or text from a source channel into individual records.
12891289

12901290
If the source item is a JSON array, each element of the array will be emitted:
12911291

0 commit comments

Comments
 (0)