summaryrefslogtreecommitdiff
path: root/test/files/presentation/callcc-interpreter/src/CallccInterpreter.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/presentation/callcc-interpreter/src/CallccInterpreter.scala')
-rw-r--r--test/files/presentation/callcc-interpreter/src/CallccInterpreter.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/presentation/callcc-interpreter/src/CallccInterpreter.scala b/test/files/presentation/callcc-interpreter/src/CallccInterpreter.scala
index 0e96dfaa05..ce3b996b96 100644
--- a/test/files/presentation/callcc-interpreter/src/CallccInterpreter.scala
+++ b/test/files/presentation/callcc-interpreter/src/CallccInterpreter.scala
@@ -2,8 +2,8 @@ object callccInterpreter {
type Answer = Value
- /**
- * A continuation monad.
+ /**
+ * A continuation monad.
*/
case class M[A](in: (A => Answer) => Answer) {
def bind[B](k: A => M[B]) = M[B](c => in (a => k(a) in c))