1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-29 06:16:40 +02:00

Fix typo: mispelled -> misspelled

This commit is contained in:
Sebastien Helleu
2009-08-06 21:35:12 +02:00
parent 859f6db87b
commit 9508953b8e
11 changed files with 21 additions and 21 deletions
+1 -1
View File
@@ -273,7 +273,7 @@ weechat_aspell_config_init ()
weechat_aspell_config_look_color = weechat_config_new_option (
weechat_aspell_config_file, ptr_section,
"color", "color",
N_("color used for mispelled words"),
N_("color used for misspelled words"),
NULL, 0, 0, "lightred", NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
/* check */
+2 -2
View File
@@ -608,7 +608,7 @@ weechat_aspell_string_is_simili_number (const char *word)
/*
* weechat_aspell_check_word: spell check a word
* return 1 if word is ok, 0 if word is mispelled
* return 1 if word is ok, 0 if word is misspelled
*/
int
@@ -814,7 +814,7 @@ weechat_aspell_modifier_cb (void *data, const char *modifier,
strcpy (result + index_result, ptr_string);
index_result += length_word;
/* add normal color (after mispelled word) */
/* add normal color (after misspelled word) */
if (!word_ok)
{
strcpy (result + index_result, color_normal);