diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2009-08-06 21:35:12 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2009-08-06 21:35:12 +0200 |
commit | 9508953b8eff1546addee4e7758e67739676209d (patch) | |
tree | b63317db69ad8fa172cf4819492239116f41eb85 /src/plugins/aspell | |
parent | 859f6db87bacc38f0929bc64f44aa8501f361c5b (diff) | |
download | weechat-9508953b8eff1546addee4e7758e67739676209d.zip |
Fix typo: mispelled -> misspelled
Diffstat (limited to 'src/plugins/aspell')
-rw-r--r-- | src/plugins/aspell/weechat-aspell-config.c | 2 | ||||
-rw-r--r-- | src/plugins/aspell/weechat-aspell.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/aspell/weechat-aspell-config.c b/src/plugins/aspell/weechat-aspell-config.c index 4c33e5f1d..aea40c5f0 100644 --- a/src/plugins/aspell/weechat-aspell-config.c +++ b/src/plugins/aspell/weechat-aspell-config.c @@ -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 */ diff --git a/src/plugins/aspell/weechat-aspell.c b/src/plugins/aspell/weechat-aspell.c index fc39fa52f..8c3d75866 100644 --- a/src/plugins/aspell/weechat-aspell.c +++ b/src/plugins/aspell/weechat-aspell.c @@ -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); |