diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-08-08 08:58:32 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-08-08 08:58:32 +0200 |
commit | 9bfe14f7781f6f7567cfbf109474254cf6272518 (patch) | |
tree | 8ab9558c7e5fa500989100a6b4d73e68a79d4234 /program/include/rcube_spellchecker.php | |
parent | 2b992c5683716faee80e2e0936dc2bbd01b3de09 (diff) | |
parent | b93f5556f20e8e5ce5c235fee11dec4c2a070060 (diff) |
Merge branch 'master' of github.com:roundcube/roundcubemail
Diffstat (limited to 'program/include/rcube_spellchecker.php')
-rw-r--r-- | program/include/rcube_spellchecker.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/program/include/rcube_spellchecker.php b/program/include/rcube_spellchecker.php index a2d1f7c61..219dca780 100644 --- a/program/include/rcube_spellchecker.php +++ b/program/include/rcube_spellchecker.php @@ -124,12 +124,12 @@ class rcube_spellchecker /** - * Returns mispelled words + * Returns misspelled words * * @param string $text The content for spellchecking. If empty content * used for check() method will be used. * - * @return array List of mispelled words + * @return array List of misspelled words */ function get_words($text = null, $is_html=false) { @@ -164,7 +164,7 @@ class rcube_spellchecker /** - * Returns checking result (mispelled words with suggestions) + * Returns checking result (misspelled words with suggestions) * * @return array Spellchecking result. An array indexed by word. */ @@ -243,7 +243,7 @@ class rcube_spellchecker /** - * Returns the mispelled words + * Returns the misspelled words */ private function _pspell_words($text = null, $is_html=false) { @@ -257,7 +257,7 @@ class rcube_spellchecker return array(); } - // With PSpell we don't need to get suggestions to return mispelled words + // With PSpell we don't need to get suggestions to return misspelled words if ($is_html) { $text = $this->html2text($text); } @@ -289,7 +289,7 @@ class rcube_spellchecker /** - * Returns suggestions for mispelled word + * Returns suggestions for misspelled word */ private function _pspell_suggestions($word) { |