Docs for fapply https://github.com/funcool/cats/blob/4367a18f8ee8f4d6ebf322939b1cf96cdbfb667a/src/cats/core.cljc#L190 Shouldn't it be `the same context as af`? Using cats 2.2.0: ```clojure (m/fapply (maybe/just inc) (either/left 5)) => #<Just 6> (m/fapply (maybe/just inc) (either/right 5)) => #<Just 6> (m/fapply (maybe/nothing) (either/right 5)) => #<Nothing> ```