We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dff5b3d commit cbd07e7Copy full SHA for cbd07e7
project/GenerateLibraryNTemplates.scala
@@ -201,10 +201,10 @@ object FunctionTwo extends Function(2) {
201
object Function {
202
def make(i: Int) = apply(i)()
203
def apply(i: Int) = i match {
204
- case 0 => FunctionZero
205
- case 1 => FunctionOne
206
- case 2 => FunctionTwo
207
- case _ => new Function(i)
+ case 0 => FunctionZero
+ case 1 => FunctionOne
+ case 2 => FunctionTwo
+ case _ => new Function(i)
208
}
209
210
0 commit comments