Fix typo in ".help" output from the shell. Ticket #914. (CVS 1978)

FossilOrigin-Name: 1ee3a787ada5abd460200d5812474161bfd1cc71
This commit is contained in:
drh 2004-09-24 12:50:03 +00:00
parent 971a7c87bc
commit 3b584fa6c5
3 changed files with 9 additions and 9 deletions

View File

@ -1,5 +1,5 @@
C Avoid\sa\ssegfault\sin\ssqlite3_bind_parameter_index\swhen\sthere\sare\nunnamed\sparameters.\s\sTicket\s#918.\s(CVS\s1977)
D 2004-09-24T12:48:13
C Fix\stypo\sin\s".help"\soutput\sfrom\sthe\sshell.\s\sTicket\s#914.\s(CVS\s1978)
D 2004-09-24T12:50:03
F Makefile.in abdeb5bd9d017822691884935c320037c33f6ee6
F Makefile.linux-gcc a9e5a0d309fa7c38e7c14d3ecf7690879d3a5457
F README f1de682fbbd94899d50aca13d387d1b3fd3be2dd
@ -58,7 +58,7 @@ F src/pragma.c 5fb6647fda4c95edb08447a505e6c98c041e5b31
F src/printf.c 2dfe86e6fcdc83ca55d2f9f4d9771428329eb0c5
F src/random.c eff68e3f257e05e81eae6c4d50a51eb88beb4ff3
F src/select.c 13a4e6d0ca2bce8be60e26a499060524fef2e28c
F src/shell.c 4f1a2760ced81c829defb47b0a3b61ffec61b604
F src/shell.c 0856973c2b94e22664bc43f398ba3fc22d5e080c
F src/sqlite.h.in e29a526593b806f148017ed8bada760ada84cf2f
F src/sqliteInt.h a7d334b2aca08de0c1cace3eebfabc129279c26f
F src/table.c 8168c6e824009f8485bff79fc60ea8fea6829b10
@ -247,7 +247,7 @@ F www/tclsqlite.tcl 560ecd6a916b320e59f2917317398f3d59b7cc25
F www/vdbe.tcl 59288db1ac5c0616296b26dce071c36cb611dfe9
F www/version3.tcl 092a01f5ef430d2c4acc0ae558d74c4bb89638a0
F www/whentouse.tcl a8335bce47cc2fddb07f19052cb0cb4d9129a8e4
P 9fa904d94ec1787bc8b97ec06a5423248fcb67fb
R 3df8be3373e722de1a905bb4ac454886
P 49f25ddf8382d588e00bf927e2acae93e332e4d4
R ee454647ea7cec38b46bf272f4bd777c
U drh
Z b33e881c15a4c20293ac74264af60f9b
Z 5a6bc1ab3c53eb7bf32cabb93d8c91d8

View File

@ -1 +1 @@
49f25ddf8382d588e00bf927e2acae93e332e4d4
1ee3a787ada5abd460200d5812474161bfd1cc71

View File

@ -12,7 +12,7 @@
** This file contains code to implement the "sqlite" command line
** utility for accessing SQLite databases.
**
** $Id: shell.c,v 1.113 2004/08/31 23:41:26 drh Exp $
** $Id: shell.c,v 1.114 2004/09/24 12:50:03 drh Exp $
*/
#include <stdlib.h>
#include <string.h>
@ -712,7 +712,7 @@ static char zHelp[] =
".import FILE TABLE Import data from FILE into TABLE\n"
".indices TABLE Show names of all indices on TABLE\n"
".mode MODE ?TABLE? Set output mode where MODE is on of:\n"
" cvs Comma-separated values\n"
" csv Comma-separated values\n"
" column Left-aligned columns. (See .width)\n"
" html HTML <table> code\n"
" insert SQL insert statements for TABLE\n"