Fix documentation typos. (CVS 2508)
FossilOrigin-Name: 41049062cdefdc111398589daff464a9a13600aa
This commit is contained in:
parent
51942bc3c3
commit
65efb65e46
14
manifest
14
manifest
@ -1,5 +1,5 @@
|
||||
C Documentation\supdates\s(ticket\s#1279).\s\sAdd\sthe\ssqlite3_db_handle\sAPI.\n(ticket\s#1275).\s(CVS\s2507)
|
||||
D 2005-06-12T22:01:43
|
||||
C Fix\sdocumentation\stypos.\s(CVS\s2508)
|
||||
D 2005-06-12T22:12:39
|
||||
F Makefile.in 8129e7f261d405db783676f9ca31e0841768c652
|
||||
F Makefile.linux-gcc 06be33b2a9ad4f005a5f42b22c4a19dab3cbb5c7
|
||||
F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
|
||||
@ -62,7 +62,7 @@ F src/printf.c 3d20b21cfecadacecac3fb7274e746cb81d3d357
|
||||
F src/random.c 90adff4e73a3b249eb4f1fc2a6ff9cf78c7233a4
|
||||
F src/select.c 28b752e58955c7920711fbdbfdcd369a2bd09448
|
||||
F src/shell.c 25b3217d7c64e6497225439d261a253a23efff26
|
||||
F src/sqlite.h.in 99d615b1e8635ceb45e6fb0551bcb6c71180c238
|
||||
F src/sqlite.h.in e06d5774e9cfa5962376ae988300a9f114a3e3d7
|
||||
F src/sqliteInt.h c620e07e0c7e6e09d8623d165427f0f1f659aad5
|
||||
F src/table.c 25b3ff2b39b7d87e8d4a5da0713d68dfc06cbee9
|
||||
F src/tclsqlite.c af0f002d9d6ab4f7f32b9bee5b57665946e76ad9
|
||||
@ -246,7 +246,7 @@ F www/audit.tcl 90e09d580f79c7efec0c7d6f447b7ec5c2dce5c0
|
||||
F www/autoinc.tcl b357f5ba954b046ee35392ce0f884a2fcfcdea06
|
||||
F www/c_interface.tcl b51b08591554c16a0c3ef718364a508ac25abc7e
|
||||
F www/capi3.tcl 7a7cc225fe02eb7ab861a6019b08baa0014409e1
|
||||
F www/capi3ref.tcl e3308069810d9078887eaac63751fd8267feac97
|
||||
F www/capi3ref.tcl 930afb4a565c092ed10e481c3c87a952f6989d83
|
||||
F www/changes.tcl 87c94ac17dd5d671db7b849205f71f50e881013a
|
||||
F www/common.tcl de758130d54d95d151ea0d17a2ae5b92e1bb01de
|
||||
F www/compile.tcl 276546d7eb445add5a867193bbd80f6919a6b084
|
||||
@ -281,7 +281,7 @@ F www/tclsqlite.tcl 425be741b8ae664f55cb1ef2371aab0a75109cf9
|
||||
F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
|
||||
F www/version3.tcl a99cf5f6d8bd4d5537584a2b342f0fb9fa601d8b
|
||||
F www/whentouse.tcl 528299b8316726dbcc5548e9aa0648c8b1bd055b
|
||||
P 36f2da1f8d8d434f861ecad55c9d86549751c954
|
||||
R 88f39d183a36e18d13d5fd06f6aee694
|
||||
P 21d44fa5e7163dc658f7147885518d90218347f7
|
||||
R ce26cf6a32801ebf720f3e8ae548681d
|
||||
U drh
|
||||
Z 952b31c2115abe98683d1e27e0717e7e
|
||||
Z 1aa5c0ca5a646fb87c77ab69aba99a58
|
||||
|
@ -1 +1 @@
|
||||
21d44fa5e7163dc658f7147885518d90218347f7
|
||||
41049062cdefdc111398589daff464a9a13600aa
|
@ -12,7 +12,7 @@
|
||||
** This header file defines the interface that the SQLite library
|
||||
** presents to client programs.
|
||||
**
|
||||
** @(#) $Id: sqlite.h.in,v 1.135 2005/06/12 22:01:43 drh Exp $
|
||||
** @(#) $Id: sqlite.h.in,v 1.136 2005/06/12 22:12:39 drh Exp $
|
||||
*/
|
||||
#ifndef _SQLITE3_H_
|
||||
#define _SQLITE3_H_
|
||||
@ -1193,7 +1193,7 @@ int sqlite3_rekey(
|
||||
int sqlite3_sleep(int);
|
||||
|
||||
/*
|
||||
** Return TRUE (non-zero) of the statement supplied as an argument needs
|
||||
** Return TRUE (non-zero) if the statement supplied as an argument needs
|
||||
** to be recompiled. A statement needs to be recompiled whenever the
|
||||
** execution environment changes in a way that would alter the program
|
||||
** that sqlite3_prepare() generates. For example, if new functions or
|
||||
|
@ -1,4 +1,4 @@
|
||||
set rcsid {$Id: capi3ref.tcl,v 1.21 2005/06/12 22:01:43 drh Exp $}
|
||||
set rcsid {$Id: capi3ref.tcl,v 1.22 2005/06/12 22:12:39 drh Exp $}
|
||||
source common.tcl
|
||||
header {C/C++ Interface For SQLite Version 3}
|
||||
puts {
|
||||
@ -1111,7 +1111,7 @@ api {} {
|
||||
api {} {
|
||||
int sqlite3_expired(sqlite3_stmt*);
|
||||
} {
|
||||
Return TRUE (non-zero) of the statement supplied as an argument needs
|
||||
Return TRUE (non-zero) if the statement supplied as an argument needs
|
||||
to be recompiled. A statement needs to be recompiled whenever the
|
||||
execution environment changes in a way that would alter the program
|
||||
that sqlite3_prepare() generates. For example, if new functions or
|
||||
|
Loading…
x
Reference in New Issue
Block a user