From: jplyon Date: Mon, 19 Jan 2004 04:57:53 +0000 (+0000) Subject: comment typos (CVS 1192) X-Git-Tag: version-3.6.10~4876 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=4b11c6d3f465942f920f3fa712a9aec0c2c71e9d;p=thirdparty%2Fsqlite.git comment typos (CVS 1192) FossilOrigin-Name: 7972ee321974380a59fef752f5643d98f9df38cc --- diff --git a/manifest b/manifest index 58a8529576..f701d2dca8 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C comment\stypos\s(CVS\s1191) -D 2004-01-19T04:55:56 +C comment\stypos\s(CVS\s1192) +D 2004-01-19T04:57:53 F Makefile.in 0515ff9218ad8d5a8f6220f0494b8ef94c67013b F Makefile.linux-gcc b86a99c493a5bfb402d1d9178dcdc4bd4b32f906 F README f1de682fbbd94899d50aca13d387d1b3fd3be2dd @@ -46,7 +46,7 @@ F src/parse.y e41722d11148f34f034716652c1668ffb0ef2905 F src/pragma.c 89d62c31c6f0a43376fe8d20549b87a6d30c467a F src/printf.c 292a7bfc5a815cb6465e32b2d5c9fe9bd43b27f0 F src/random.c 19e8e00fe0df32a742f115773f57651be327cabe -F src/select.c 2712bd4d311ebe7dbf8fd7596a809042657db85f +F src/select.c 131b1af582c48a72f92eee9f3dfc669687faa1c8 F src/shell.c 3b067edc098c45caca164bcad1fa79192c3ec5ae F src/sqlite.h.in c70d8533cd5a5ae8af580597dbc726693ef82de9 F src/sqliteInt.h c5b727d5d07b88654c204c0fc1ae79c9f635a008 @@ -180,7 +180,7 @@ F www/speed.tcl 2f6b1155b99d39adb185f900456d1d592c4832b3 F www/sqlite.tcl 3c83b08cf9f18aa2d69453ff441a36c40e431604 F www/tclsqlite.tcl b9271d44dcf147a93c98f8ecf28c927307abd6da F www/vdbe.tcl 9b9095d4495f37697fd1935d10e14c6015e80aa1 -P 0d2683dc5ecb886ae9625484b51e65df49b3235d -R 203cc465a47717ce24d2d19ccf38f702 +P de35c36ed7657903ebba0c5acff75baaa0453f87 +R 5016fe6fe6275299a3b767a9f0895d11 U jplyon -Z dbd68a45967f0a84beda668c59e1a249 +Z 7f28b1cde29695a0721906aa558a015b diff --git a/manifest.uuid b/manifest.uuid index ec3987830a..6d7390872b 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -de35c36ed7657903ebba0c5acff75baaa0453f87 \ No newline at end of file +7972ee321974380a59fef752f5643d98f9df38cc \ No newline at end of file diff --git a/src/select.c b/src/select.c index 8bce1487ea..fde9270cab 100644 --- a/src/select.c +++ b/src/select.c @@ -12,7 +12,7 @@ ** This file contains C code routines that are called by the parser ** to handle SELECT statements in SQLite. ** -** $Id: select.c,v 1.147 2004/01/14 13:38:54 drh Exp $ +** $Id: select.c,v 1.148 2004/01/19 04:57:53 jplyon Exp $ */ #include "sqliteInt.h" @@ -1262,7 +1262,7 @@ static void computeLimitRegisters(Parse *pParse, Select *p){ ** | ** `-----> SELECT b FROM t2 ** | -** `------> SELECT c FROM t1 +** `------> SELECT a FROM t1 ** ** The arrows in the diagram above represent the Select.pPrior pointer. ** So if this routine is called with p equal to the t3 query, then @@ -1935,7 +1935,7 @@ static int simpleMinMaxQuery(Parse *pParse, Select *p, int eDest, int iParm){ ** ** SRT_Union Store results as a key in a temporary table iParm ** -** SRT_Except Remove results form the temporary table iParm. +** SRT_Except Remove results from the temporary table iParm. ** ** SRT_Table Store results in temporary table iParm **