Hold details of a special sequence

Methods
#
N
Attributes
[RW] text

Special text

[R] type

Special type

Class Public methods
new(type, text)

Creates a new special sequence of type with text

# File ../ruby/lib/rdoc/markup/inline.rb, line 121
def initialize(type, text)
  @type, @text = type, text
end
Instance Public methods
==(o)

Specials are equal when the have the same text and type

# File ../ruby/lib/rdoc/markup/inline.rb, line 128
def ==(o)
  self.text == o.text && self.type == o.type
end