diff options
author | unknown <paul@frost.snake.net> | 2004-12-18 14:30:00 -0600 |
---|---|---|
committer | unknown <paul@frost.snake.net> | 2004-12-18 14:30:00 -0600 |
commit | b824756c00b235bc6825d561c833ffed2f2e0d38 (patch) | |
tree | e01dff4ab42d726b4ecff9f691fe78f4074d5400 /client | |
parent | d8432ada2c6b4a7550e17053d3824736ee75ddea (diff) | |
download | mariadb-git-b824756c00b235bc6825d561c833ffed2f2e0d38.tar.gz |
mysql.cc:
Fix up mysql help messages.
client/mysql.cc:
Fix up mysql help messages.
Diffstat (limited to 'client')
-rw-r--r-- | client/mysql.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/mysql.cc b/client/mysql.cc index 8e9dd84c8f0..0ea0f10f5d7 100644 --- a/client/mysql.cc +++ b/client/mysql.cc @@ -1677,7 +1677,7 @@ static int com_server_help(String *buffer __attribute__((unused)), if (num_fields == 2) { put_info("Many help items for your request exist.", INFO_INFO); - put_info("To make a more specific request, please type 'help <item>',\nwhere item is one of the following", INFO_INFO); + put_info("To make a more specific request, please type 'help <item>',\nwhere <item> is one of the following", INFO_INFO); num_name= 0; num_cat= 1; last_char= '_'; @@ -1685,7 +1685,7 @@ static int com_server_help(String *buffer __attribute__((unused)), else if ((cur= mysql_fetch_row(result))) { tee_fprintf(PAGER, "You asked for help about help category: \"%s\"\n", cur[0]); - put_info("For more information, type 'help <item>', where item is one of the following", INFO_INFO); + put_info("For more information, type 'help <item>', where <item> is one of the following", INFO_INFO); num_name= 1; num_cat= 2; print_help_item(&cur,1,2,&last_char); |