Say I have a method like this
# @return [Integer] number of arguments provided to the method
def return_number_of_arguments(*args)
return args.length
end
How could I add @param
documentation?
Ideas I have:
@param [*Object] any objects
but I couldn't find anything in the yard docs