Skip to content

Commit

Permalink
Made Plan covariant in K again
Browse files Browse the repository at this point in the history
  • Loading branch information
runarorama committed Dec 28, 2012
1 parent 2d28a64 commit 20f721f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/com/clarifi/machines/Plan.scala
Expand Up @@ -12,7 +12,7 @@ import scalaz._
* inputs selected by `K` and writes values of type `O`. The `Plan` has
* intermediate results of type `A` which are placeholders for further plans.
*/
sealed trait Plan[K, +O, +A] {
sealed trait Plan[+K, +O, +A] {

/**
* Substitute into the variables in this `Plan`.
Expand Down

0 comments on commit 20f721f

Please sign in to comment.