I was trying to document some Ruby code using yard
and even though I am doing exactly what is described here or here
# @param [Integer] the number of trials (>= 0)
# @param [Float] success probability in each trial
def initialize(n, p)
# initialize...
end
I still get this strange error though
@param tag has unknown parameter name: the
@param tag has unknown parameter name: success
and then the generated html looks wierd. I am calling yard
this:
$ yard doc -m markdown
What could I be doing wrong?