# File lib/mcollective/application/facts.rb, line 12
  def show_single_fact_report(fact, facts, verbose=false)
    puts("Report for fact: #{fact}\n\n")

    field_size = MCollective::Util.field_size(facts.keys)
    facts.keys.sort.each do |k|
      printf("        %-#{field_size}s found %d times\n", k, facts[k].size)

      if verbose
        puts

        facts[k].sort.each do |f|
          puts("            #{f}")
        end

        puts
      end
    end
  end