SpellCheckItem

sealed class SpellCheckItem(source)

Represents a spell check item that can be either a word-level misspelling or a sentence-level correction.

Inheritors

Types

Link copied to clipboard
data class MisspelledWord(val segment: WordSegment) : SpellCheckItem

A word-level misspelling identified by its WordSegment.

Link copied to clipboard
data class SentenceIssue(val correction: Correction) : SpellCheckItem

A sentence-level issue described by a Correction.