A CaseIgnoring WordList is like a WordList, only that keys are compared case-insensitively (normalizing keys using downcase).

Methods
Public Instance methods
[](key)
# File lib/coderay/helpers/word_list.rb, line 67
    def [] key
      super key.downcase
    end
[]=(key, value)
# File lib/coderay/helpers/word_list.rb, line 71
    def []= key, value
      super key.downcase, value
    end