aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2006-08-19 13:32:05 +0000
committerdrh <drh@noemail.net>2006-08-19 13:32:05 +0000
commita7e18326c62d7fba1d31faaa575f18dbb838452c (patch)
treea0be6fc4fb25c9b0b3acdeabd2197e669f96ed24
parentbdf67e0efe01cd467278b8bd6ee589bbc1eb3f65 (diff)
downloadsqlite-a7e18326c62d7fba1d31faaa575f18dbb838452c.tar.gz
sqlite-a7e18326c62d7fba1d31faaa575f18dbb838452c.zip
Fix bug in documentation. Ticket #1927. (CVS 3359)
FossilOrigin-Name: 90296bc8fa443833e6316c873dd18b951d3247f7
-rw-r--r--manifest12
-rw-r--r--manifest.uuid2
-rw-r--r--www/sqlite.tcl6
3 files changed, 10 insertions, 10 deletions
diff --git a/manifest b/manifest
index 673f5cfa9..9a058414e 100644
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Fix\sfor\sthe\s(unsupported)\ssoundex\salgorithm\sso\sthat\sit\sconforms\sto\sKnuth.\nTicket\s#1925.\s\sTest\scases\sadded.\s(CVS\s3358)
-D 2006-08-19T11:34:01
+C Fix\sbug\sin\sdocumentation.\s\sTicket\s#1927.\s(CVS\s3359)
+D 2006-08-19T13:32:05
F Makefile.in 986db66b0239b460fc118e7d2fa88b45b26c444e
F Makefile.linux-gcc 2d8574d1ba75f129aba2019f0b959db380a90935
F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@@ -370,14 +370,14 @@ F www/quickstart.tcl 8708a4ca83fbf55c66af1782992626f20c3df095
F www/shared.gif 265bae80c5b311c5a86e47662821076ffaf5c6ea
F www/sharedcache.tcl 3ebec81110e606af6fd65a3c4c19562cb173b29c
F www/speed.tcl 656ed5be8cc9d536353e1a96927b925634a62933
-F www/sqlite.tcl a883ed7b47371d31d471e6aea5ed1f972ae8e1be
+F www/sqlite.tcl d048c176c42fd464fe4fa2bc712041594d48a7cc
F www/support.tcl 7961ce16290692578d783bb11f0dc8391a9be9c3
F www/table-ex1b2.gif a588d21a2d88bb2a2ef0431fcc5ed5aa48c0bbc5
F www/tclsqlite.tcl bb0d1357328a42b1993d78573e587c6dcbc964b9
F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b
F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513
-P 10907bb2011eefa306c0e6ee573b6dfe765c8631
-R ebb62594a66010c4b8b28eb6089f2dd8
+P 7810d1abf611ce40dd0de45610269359a8ca9222
+R 9663f9084c4b1df09c3f26b44c3b7140
U drh
-Z 46d50053f744f8251c3eeed26f8889ee
+Z f3c15b991dde60a2e6e4af57bd6ff00f
diff --git a/manifest.uuid b/manifest.uuid
index b55a7ac18..0084990f7 100644
--- a/manifest.uuid
+++ b/manifest.uuid
@@ -1 +1 @@
-7810d1abf611ce40dd0de45610269359a8ca9222 \ No newline at end of file
+90296bc8fa443833e6316c873dd18b951d3247f7 \ No newline at end of file
diff --git a/www/sqlite.tcl b/www/sqlite.tcl
index f4d048399..6e56e5656 100644
--- a/www/sqlite.tcl
+++ b/www/sqlite.tcl
@@ -1,7 +1,7 @@
#
# Run this Tcl script to generate the sqlite.html file.
#
-set rcsid {$Id: sqlite.tcl,v 1.23 2005/12/02 01:57:43 drh Exp $}
+set rcsid {$Id: sqlite.tcl,v 1.24 2006/08/19 13:32:05 drh Exp $}
source common.tcl
header {sqlite: A command-line access program for SQLite databases}
puts {
@@ -559,8 +559,8 @@ puts {
<p>
SQLite commands are normally terminated by a semicolon. In the shell
-you can also use the word "GO" (case-insensitive) or a backslash character
-"\" on a line by itself to end a command. These are used by SQL Server
+you can also use the word "GO" (case-insensitive) or a slash character
+"/" on a line by itself to end a command. These are used by SQL Server
and Oracle, respectively. These won't work in <b>sqlite_exec()</b>,
because the shell translates these into a semicolon before passing them
to that function.</p>