Sha256: 719886acc85f006e62d3dde23f55266c223168dd72758372d7bf8bfb827e86a9

Contents?: true

Size: 181 Bytes

Versions: 1

Compression:

Stored size: 181 Bytes

Contents

class Jisho::Misspellings < Array
  # Get the unique set of misspelled words.

  def words
    return @words if defined? @words

    @words = self.map{ |e| e[:word] }.uniq
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jisho-0.1.1 lib/jisho/misspellings.rb