# File lib_ctrl/rucy/params.rb, line 896
    def comment=(new_comment)
      case (new_comment)
      when String, NilClass
        # nothing to do.
      else
        raise "not allowed comment: #{new_comment.inspect}"
      end
      @attrs['comment'] = new_comment
    end