]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix a typo in capi3.tcl. (CVS 1784)
authordanielk1977 <danielk1977@noemail.net>
Wed, 30 Jun 2004 13:28:32 +0000 (13:28 +0000)
committerdanielk1977 <danielk1977@noemail.net>
Wed, 30 Jun 2004 13:28:32 +0000 (13:28 +0000)
FossilOrigin-Name: 982389b25d26201116fdfd390aa4b9964b5adf69

manifest
manifest.uuid
www/capi3.tcl

index 54cb91bc25db1533e3c59b11c74ec5ba1ece8421..d722cf0bce01ce220e5939c8431ec0beb2164089 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Have\sthe\sdebug\sversion\sof\ssqliteRealloc()\sreturn\spartially\suninitialised\nmemory\sin\sthe\ssame\sway\sas\sthe\snon-debug\sversion\scan.\s(CVS\s1783)
-D 2004-06-30T12:49:46
+C Fix\sa\stypo\sin\scapi3.tcl.\s(CVS\s1784)
+D 2004-06-30T13:28:33
 F Makefile.in f5788bf4daea9b25424df5ccb529ac3438efb2b2
 F Makefile.linux-gcc a9e5a0d309fa7c38e7c14d3ecf7690879d3a5457
 F README f1de682fbbd94899d50aca13d387d1b3fd3be2dd
@@ -201,7 +201,7 @@ F www/arch2.fig 613b5ac63511109064c2f93c5754ee662219937d
 F www/arch2.gif 49c6bb36160f03ca2b89eaa5bfb1f560c7d68ee7
 F www/audit.tcl 90e09d580f79c7efec0c7d6f447b7ec5c2dce5c0
 F www/c_interface.tcl 2176519fc2bd2d2cf6fe74fd806fc2d8362de2c8
-F www/capi3.tcl af6938cc417fe323d7570b95d2e9a019bbff637e
+F www/capi3.tcl 5c1cb163f4d2a54e2d0e22dcc399dd71245c8b89
 F www/capi3ref.tcl ae6c0ed88f601119c15de964b7b4b2f8c9b05831
 F www/changes.tcl 29701180c74161380a4d3a1cd6640fe50bc1fae1
 F www/common.tcl f786e6be86fb2627ceb30e770e9efa83b9c67a3a
@@ -233,7 +233,7 @@ F www/tclsqlite.tcl 19191cf2a1010eaeff74c51d83fd5f5a4d899075
 F www/vdbe.tcl 59288db1ac5c0616296b26dce071c36cb611dfe9
 F www/version3.tcl 563ba3ac02f64da27ab17f3edbe8e56bfd0293fb
 F www/whentouse.tcl a8335bce47cc2fddb07f19052cb0cb4d9129a8e4
-P ed511c2ea9581933ca504ce4b43d863503c6cc22
-R a9545d46e5988521e62ac4bcd2b6fe2d
+P e78b0ff30fb630bc9835a7545525eea64924bafc
+R 5a53fa7c23614312cd45bc36b92cf7b4
 U danielk1977
-Z 9cc28bee00d11300c71fd982024608f0
+Z 1ffda58858ec478fc2be1aff401663fe
index 43fa497169751d1ffa2b68bce7aa1e9f9ad5e685..b3b048785065ad8d7ce261764c6556d398966d50 100644 (file)
@@ -1 +1 @@
-e78b0ff30fb630bc9835a7545525eea64924bafc
\ No newline at end of file
+982389b25d26201116fdfd390aa4b9964b5adf69
\ No newline at end of file
index 58028e4d6ffca5b724362c0ae9e43b4fcc550294..a19cf75c8194a70835e0d5c182703240f7db91ca 100644 (file)
@@ -1,4 +1,4 @@
-set rcsid {$Id: capi3.tcl,v 1.5 2004/06/18 11:34:09 danielk1977 Exp $}
+set rcsid {$Id: capi3.tcl,v 1.6 2004/06/30 13:28:33 danielk1977 Exp $}
 source common.tcl
 header {C/C++ Interface For SQLite Version 3}
 puts {
@@ -46,11 +46,11 @@ to whatever datatype is appropriate for their system.
 <h3>2.0 C/C++ Interface</h3>
 
 <p>
-The API for SQLite 3.0 three includes 83 separate functions in addition
+The API for SQLite 3.0 includes 83 separate functions in addition
 to several data structures and #defines.  (A complete
 <a href="capi3ref.html">API reference</a> is provided as a separate document.)
 Fortunately, the interface is not nearly as complex as its size implies.
-Simple programs can still make due with only 3 functions:
+Simple programs can still make do with only 3 functions:
 <a href="capi3ref.html#sqlite3_open">sqlite3_open()</a>,
 <a href="capi3ref.html#sqlite3_exec">sqlite3_exec()</a>, and
 <a href="capi3ref.html#sqlite3_close">sqlite3_close()</a>.
@@ -62,9 +62,9 @@ to compile an SQLite statement into byte code and
 to execute that bytecode.
 A family of routines with names beginning with 
 <a href="capi3ref.html#sqlite3_column_blob">sqlite3_column_</a>
-is used to extract informatiom about the result set of a query.
+is used to extract information about the result set of a query.
 Many interface functions come in pairs, with both a UTF-8 and
-and UTF-16 version.  And there is a collection of routines
+UTF-16 version.  And there is a collection of routines
 used to implement user-defined SQL functions and user-defined
 text collating sequences.
 </p>
@@ -111,7 +111,7 @@ as UTF-16 in host native byte order.
 </p>
 
 <p>
-The error codes for SQLite version 3 are unchanged from version2.
+The error codes for SQLite version 3 are unchanged from version 2.
 They are as follows:
 </p>