From: drh
Date: Mon, 21 Mar 2005 01:24:02 +0000 (+0000)
Subject: fix typo in CREATE VIEW documentation. Ticket #1135. (CVS 2411)
X-Git-Tag: version-3.6.10~3747
X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6062d8f5f2e1f991d6df1ade727209c37a08a4c2;p=thirdparty%2Fsqlite.git
fix typo in CREATE VIEW documentation. Ticket #1135. (CVS 2411)
FossilOrigin-Name: 38897a509a98188a06c49c01a71ddf8835c7b607
---
diff --git a/manifest b/manifest
index cb0ef82b42..d1aec4a34e 100644
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Fix\san\sinfinite\sloop\sin\sthe\scode\sgenerator\sfor\sINSERT.\s\sTicket\s#1140.\s(CVS\s2410)
-D 2005-03-21T01:20:58
+C fix\stypo\sin\sCREATE\sVIEW\sdocumentation.\s\sTicket\s#1135.\s(CVS\s2411)
+D 2005-03-21T01:24:02
F Makefile.in 5c00d0037104de2a50ac7647a5f12769795957a3
F Makefile.linux-gcc 06be33b2a9ad4f005a5f42b22c4a19dab3cbb5c7
F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@@ -260,7 +260,7 @@ F www/faq.tcl 1e348dec52dc0f21f4216fd6918c69c56daa4cfd
F www/fileformat.tcl 900c95b9633abc3dcfc384d9ddd8eb4876793059
F www/formatchng.tcl ec974d74a87f7ae69d0626848bfcf716865c3291
F www/index.tcl d205e4f360829c2f2805b7d4c11f8b293e1f6bac
-F www/lang.tcl 5b4c95284d5284970526104b676dcdffe1889927
+F www/lang.tcl b121bfd638fd3fd6db7450d82cf8c8145f4753df
F www/lockingv3.tcl f59b19d6c8920a931f096699d6faaf61c05db55f
F www/mingw.tcl d96b451568c5d28545fefe0c80bee3431c73f69c
F www/nulls.tcl ec35193f92485b87b90a994a01d0171b58823fcf
@@ -277,7 +277,7 @@ F www/tclsqlite.tcl e73f8f8e5f20e8277619433f7970060ab01088fc
F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
F www/version3.tcl 092a01f5ef430d2c4acc0ae558d74c4bb89638a0
F www/whentouse.tcl 528299b8316726dbcc5548e9aa0648c8b1bd055b
-P b48784cf65420da5ccdf779504e3c0b5c0f2471d
-R 672678ded19de8ecd9285bc2b337f447
+P 876d09d9145775956913e975c29e81d7553839ac
+R 102adcb61d5e412e042bc001de9a5328
U drh
-Z cfa0ed114867b2787c7c40a2be3dcf16
+Z 0f028b267572ce51730f974e5e04b5b2
diff --git a/manifest.uuid b/manifest.uuid
index d8db084ea2..c38c7d1e87 100644
--- a/manifest.uuid
+++ b/manifest.uuid
@@ -1 +1 @@
-876d09d9145775956913e975c29e81d7553839ac
\ No newline at end of file
+38897a509a98188a06c49c01a71ddf8835c7b607
\ No newline at end of file
diff --git a/www/lang.tcl b/www/lang.tcl
index b46442be54..ed91c651ec 100644
--- a/www/lang.tcl
+++ b/www/lang.tcl
@@ -1,7 +1,7 @@
#
# Run this Tcl script to generate the lang-*.html files.
#
-set rcsid {$Id: lang.tcl,v 1.88 2005/03/21 00:28:24 drh Exp $}
+set rcsid {$Id: lang.tcl,v 1.89 2005/03/21 01:24:02 drh Exp $}
source common.tcl
if {[llength $argv]>0} {
@@ -772,9 +772,9 @@ and "TABLE" then the table that is created is only visible to the
process that opened the database and is automatically deleted when
the database is closed.
- If a is specified, then the view is created in
-the named database. It is an error to specify both a
-and the TEMP keyword, unless the is "temp". If no
+ If a <database-name> is specified, then the view is created in
+the named database. It is an error to specify both a <database-name>
+and the TEMP keyword, unless the <database-name> is "temp". If no
database name is specified, and the TEMP keyword is not present,
the table is created in the main database.