Appends comment to the current comment separated by a rule.
# File lib/rdoc/context.rb, line 157
def comment= comment
comment = extract_comment comment
return if comment.empty?
if @comment then
@comment += "\n# ---\n#{comment}"
else
@comment = comment
end
end