1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-26 12:56:37 +02:00

core: fix typos in many comments and some strings

This commit is contained in:
Sebastien Helleu
2013-03-17 12:55:20 +01:00
parent 46677c79fc
commit 149c77decd
70 changed files with 228 additions and 217 deletions
+2 -2
View File
@@ -1871,7 +1871,7 @@ gui_buffer_search_by_partial_name (const char *plugin, const char *name)
if (!name || !name[0])
return gui_current_window->buffer;
/* 0: mathces beginning of buffer name, 1: in the middle, 2: the end */
/* 0: matches beginning of buffer name, 1: in the middle, 2: the end */
buffer_partial_match[0] = NULL;
buffer_partial_match[1] = NULL;
buffer_partial_match[2] = NULL;
@@ -2416,7 +2416,7 @@ gui_buffer_move_to_number (struct t_gui_buffer *buffer, int number)
if (number < 1)
number = 1;
/* buffer number is already ok ? */
/* buffer number is already OK ? */
if (number == buffer->number)
return;