Exlcude method from rdoc

What’s the sytax to exclude a method form a generated rdoc? Just a
method in a class, not an entire class or module.

Thanks in advance,
-Alex

Alex W. wrote:

What’s the sytax to exclude a method form a generated rdoc? Just a
method in a class, not an entire class or module.

def foo # :nodoc:
end

Works with class defs too.

Joel VanderWerf wrote:

Alex W. wrote:

What’s the sytax to exclude a method form a generated rdoc? Just a
method in a class, not an entire class or module.

def foo # :nodoc:
end

Works with class defs too.

Thank you, I wasn’t sure if that would nuke the documentation for the
entire module or not.