Skip to content

Commit e939c10

Browse files
committed
Improved scala doc comments in MetaPipe
1 parent 1c18b56 commit e939c10

File tree

1 file changed

+4
-6
lines changed
  • dynaml-pipes/src/main/scala-2.11/io/github/mandar2812/dynaml/pipes

1 file changed

+4
-6
lines changed

dynaml-pipes/src/main/scala-2.11/io/github/mandar2812/dynaml/pipes/MetaPipe.scala

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
package io.github.mandar2812.dynaml.pipes
22

33
/**
4+
* Data Pipe wrapper of a curried function of order 1
45
* @author mandar2812 date: 21/02/2017.
56
*
6-
* Data Pipe wrapper of a curried function of order 1
7-
*/
7+
* */
88
trait MetaPipe[Source, Intermediate, Destination] extends
99
DataPipe[Source, DataPipe[Intermediate, Destination]] {
1010

@@ -37,10 +37,9 @@ object MetaPipe {
3737
}
3838

3939
/**
40-
* @author mandar2812 date: 21/02/2017
41-
*
4240
* Wraps a curried function of order 1 which takes 2 arguments
4341
* and returns a [[Function1]].
42+
* @author mandar2812 date: 21/02/2017
4443
*
4544
* */
4645
trait MetaPipe21[A, B, C, D] extends DataPipe2[A, B, DataPipe[C, D]] {
@@ -60,10 +59,9 @@ object MetaPipe21 {
6059
}
6160

6261
/**
63-
* @author mandar2812 date: 21/02/2017
64-
*
6562
* Wraps a curried function of order 1 which takes 1 arguments
6663
* and returns a [[Function2]].
64+
* @author mandar2812 date: 21/02/2017
6765
*
6866
* */
6967
trait MetaPipe12[A, B, C, D] extends DataPipe[A, DataPipe2[B, C, D]] {

0 commit comments

Comments
 (0)