# File lib/rake.rb, line 408
408:     def add_comment(comment)
409:       return if ! comment
410:       if @comment 
411:         @comment << " / "
412:       else
413:         @comment = ''
414:       end
415:       @comment << comment
416:     end