summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/library/scala/util/Either.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/util/Either.scala b/src/library/scala/util/Either.scala
index 6da39692c5..5c61d83a1a 100644
--- a/src/library/scala/util/Either.scala
+++ b/src/library/scala/util/Either.scala
@@ -214,7 +214,7 @@ sealed abstract class Either[+A, +B] extends Product with Serializable {
* @param elem the element to test.
* @return `true` if the option has an element that is equal (as determined by `==`) to `elem`, `false` otherwise.
*/
- final def contains[AA >: A](elem: AA): Boolean = this match {
+ final def contains[BB >: B](elem: BB): Boolean = this match {
case Right(b) => b == elem
case Left(_) => false
}