sparklemotion/nokogiri

View on GitHub
lib/nokogiri/xml/processing_instruction.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

module Nokogiri
  module XML
    class ProcessingInstruction < Node
      def initialize(document, name, content)
        super(document, name)
      end
    end
  end
end