summaryrefslogtreecommitdiff
path: root/src/library/scala/Function7.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/scala/Function7.scala')
-rw-r--r--src/library/scala/Function7.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library/scala/Function7.scala b/src/library/scala/Function7.scala
index 10f8e9b599..4eda7059e8 100644
--- a/src/library/scala/Function7.scala
+++ b/src/library/scala/Function7.scala
@@ -11,14 +11,14 @@ package scala
/** A function of 7 parameters.
- *
+ *
*/
trait Function7[-T1, -T2, -T3, -T4, -T5, -T6, -T7, +R] extends AnyRef { self =>
/** Apply the body of this function to the arguments.
* @return the result of function application.
*/
def apply(v1: T1, v2: T2, v3: T3, v4: T4, v5: T5, v6: T6, v7: T7): R
-
+
/** Creates a curried version of this function.
*
* @return a function `f` such that `f(x1)(x2)(x3)(x4)(x5)(x6)(x7) == apply(x1, x2, x3, x4, x5, x6, x7)`