# File lib/rake.rb, line 403
403:     def add_comment(comment)
404:       return if ! comment
405:       if @comment 
406:         @comment << " / "
407:       else
408:         @comment = ''
409:       end
410:       @comment << comment
411:     end