# File ../../auditor/lib/kasp_auditor/auditor.rb, line 949
    def get_types_string(types_covered)
      types_string = ""
      types_covered.uniq.each {|type|
        types_string += " #{type}"
      }
      return types_string
    end