Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type SpellCheck ¶
type SpellCheck struct {
OriginalText string `json:"originalText,omitempty"`
DidYouMean string `json:"didYouMean,omitempty"`
Location string `json:"location,omitempty"`
NumberOfCorrections int `json:"numberOfCorrections,omitempty"`
Changes []SpellCheckChange `json:"changes,omitempty"`
}
SpellCheck presents proper text without misspellings and the list of words that were misspelled
type SpellCheckChange ¶
type SpellCheckChange struct {
Original string `json:"original,omitempty"`
Corrected string `json:"corrected,omitempty"`
}
SpellCheckChange describes the misspellings
Click to show internal directories.
Click to hide internal directories.