]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix a typo in comments. Ticket #2660. (CVS 4443)
authordanielk1977 <danielk1977@noemail.net>
Fri, 21 Sep 2007 04:27:02 +0000 (04:27 +0000)
committerdanielk1977 <danielk1977@noemail.net>
Fri, 21 Sep 2007 04:27:02 +0000 (04:27 +0000)
FossilOrigin-Name: 02c8d60bea36825c1c763bbf2c6107869915aafd

manifest
manifest.uuid
src/sqlite.h.in

index 26043a20d3dd86819c34e8d57f18337e3b0bbfc2..3eeb142589a7341d0366088d59a373b1d19dba1f 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Initial\sattempt\sof\sthe\snew\sOS/2\smutex\simplementation.\s(Compiles\sand\san\sattempt\sto\screate\sa\snew\stable\sdoes\snot\scrash\sin\smutex_os2\sany\smore.)\s(CVS\s4442)
-D 2007-09-20T21:40:23
+C Fix\sa\stypo\sin\scomments.\sTicket\s#2660.\s(CVS\s4443)
+D 2007-09-21T04:27:03
 F Makefile.in cbfb898945536a8f9ea8b897e1586dd1fdbcc5db
 F Makefile.linux-gcc 65241babba6faf1152bf86574477baab19190499
 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@@ -130,7 +130,7 @@ F src/random.c 4a22746501bf36b0a088c66e38dde5daba6a35da
 F src/select.c 4706a6115da1bdc09a2be5991168a6cc2c0df267
 F src/server.c 087b92a39d883e3fa113cae259d64e4c7438bc96
 F src/shell.c 82089379833e361ba8a2ae65316a2173785300c0
-F src/sqlite.h.in 26b53ebd71d051bdefb6ba326f6742747c188cb7
+F src/sqlite.h.in 4ebbcb5a784493b6afb36fd83101e9c2e6d56707
 F src/sqlite3ext.h a93f59cdee3638dc0c9c086f80df743a4e68c3cb
 F src/sqliteInt.h 3bd074087852e6efa56df64926971b8af751bf35
 F src/sqliteLimit.h 1bcbbdfa856f8b71b561abb31edb864b0eca1d12
@@ -580,7 +580,7 @@ F www/tclsqlite.tcl 8be95ee6dba05eabcd27a9d91331c803f2ce2130
 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
 F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b
 F www/whentouse.tcl fc46eae081251c3c181bd79c5faef8195d7991a5
-P 138d3fcc5a74eb570107ae1299184a318b5417df
-R e9894f36c93ccc5a5ee19342f2f8d077
-U pweilbacher
-Z de52f251ffc6cc3de4422ed1c0ef5cd9
+P aa61b244252399cce3b9c1ece9c6816ae9cb6717
+R bb6e7566cd059ab9326ae8d4e1adbd88
+U danielk1977
+Z 2a611a45ccc1d1bb4929949e58fbdfb4
index 7a1b90c0fbd39575e90db243cf55b255b605b3a4..25fe5d059e7964ccba1531c38ebf08b9b9c0f589 100644 (file)
@@ -1 +1 @@
-aa61b244252399cce3b9c1ece9c6816ae9cb6717
\ No newline at end of file
+02c8d60bea36825c1c763bbf2c6107869915aafd
\ No newline at end of file
index 175dbfdc77d2eb8292508d4fb7461a86c9c80f22..225e9816d6697bc3b7569ba8d475a53e9a310dfb 100644 (file)
@@ -30,7 +30,7 @@
 ** the version number) and changes its name to "sqlite3.h" as
 ** part of the build process.
 **
-** @(#) $Id: sqlite.h.in,v 1.261 2007/09/17 07:02:57 danielk1977 Exp $
+** @(#) $Id: sqlite.h.in,v 1.262 2007/09/21 04:27:03 danielk1977 Exp $
 */
 #ifndef _SQLITE3_H_
 #define _SQLITE3_H_
@@ -295,7 +295,7 @@ int sqlite3_exec(
 #define SQLITE_EMPTY       16   /* Database is empty */
 #define SQLITE_SCHEMA      17   /* The database schema changed */
 #define SQLITE_TOOBIG      18   /* String or BLOB exceeds size limit */
-#define SQLITE_CONSTRAINT  19   /* Abort due to contraint violation */
+#define SQLITE_CONSTRAINT  19   /* Abort due to constraint violation */
 #define SQLITE_MISMATCH    20   /* Data type mismatch */
 #define SQLITE_MISUSE      21   /* Library used incorrectly */
 #define SQLITE_NOLFS       22   /* Uses OS features not supported on host */