Aladdin - Scala Bugtracking
[#808] project: scala-doc priority: low category: bug
submitter assigned to status date submitted
Iulian _ fixed 2006-11-09 11:02:26.0
subject type parameters lower bounds shown incorrectly
code
what happened
for instance, method List.diff shows up as:

def diff[a <: b](that: scala.List[b]): scala.List[b] 

which has one type param, 'b', with lower bound 'a'. It should really be:

def diff[b >: a](that: scala.List[b]): scala.List[b] 
what expected Since I fixed this same bug a while ago, I fixed it a second time now and decided to post it as a reminder, so people are more careful when changing scaladoc..
[back to overview]
Changes of this bug report