=act,tes Small TestKit cleanup

This commit is contained in:
Eugene Platonov 2014-02-27 17:14:38 -05:00
parent 585267666c
commit 96bf75b2b7
2 changed files with 44 additions and 43 deletions

View file

@ -95,9 +95,9 @@ object JavaPartialFunction {
* }
* }}}
*
* i.e. it will first call `PurePartialFunction.apply(x, true)` and if that
* i.e. it will first call `JavaPartialFunction.apply(x, true)` and if that
* does not throw `noMatch()` it will continue with calling
* `PurePartialFunction.apply(x, false)`.
* `JavaPartialFunction.apply(x, false)`.
*/
abstract class JavaPartialFunction[A, B] extends AbstractPartialFunction[A, B] {
import JavaPartialFunction._