# File lib/pdf/reader/explore.rb, line 61
    def output_child (obj)
      print ": #{obj.class}"

      case obj
      when Float
        print ": #{obj}"
      when String
        print ": #{obj[0, 20].sub(/\n/, ' ')}"
      end
    end