The document for this method should already include the parameter number
.
# Iterate and do sth with +number+.
def iterate
yield(number)
end
However, rdoc -C1
still reports something is undocumented.
# ++ is not documented
def iterate(); end
Any idea what the ++ means in the report and what's wrong in the doc?