Skip to content

Commit

Permalink
Update docs/user/api/operations/concatenation-operation.md
Browse files Browse the repository at this point in the history
  • Loading branch information
asubb committed Aug 12, 2020
1 parent e28a78b commit a7b1673
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/user/api/operations/concatenation-operation.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This is what is happening schematically, the stream are being read one after ano
[1, 2, 3, 4] .. [10, 12, 13] -> [1, 2, 3, 4, 10, 12, 13]
```

The inline operator `..` concatenate two streams, you may use them one-by-one as many as you like to concatenate more stream altogether:
The inline operator `..` concatenate two streams, you may use them one-by-one as many as you like to concatenate more streams altogether:

```
// finite streams
Expand Down Expand Up @@ -47,4 +47,4 @@ val sine2 = listOf(0.1, 0.2, 0.3).map { sampleOf(it) }.input()

(sine1..sine2).asSequence(1000.0f).toList()
// results in stream [1.0, -0.9297764858882515, 0.7289686274214119, 0.1, 0.2, 0.3]
```
```

0 comments on commit a7b1673

Please sign in to comment.