1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Fix typos in documentation. Ticket #1239. (CVS 2671)

FossilOrigin-Name: 73fbb8d9689fecec18c36814e4358e691bcd647e
This commit is contained in:
drh
2005-09-08 11:04:57 +00:00
parent 3224b32b00
commit 2af6742d86
4 changed files with 13 additions and 13 deletions

View File

@@ -1,5 +1,5 @@
C Fix\sa\scomment\sin\ssqlite.h.\s\sTicket\s#1321.\s(CVS\s2670) C Fix\stypos\sin\sdocumentation.\s\sTicket\s#1239.\s(CVS\s2671)
D 2005-09-08T10:58:52 D 2005-09-08T11:04:57
F Makefile.in 12784cdce5ffc8dfb707300c34e4f1eb3b8a14f1 F Makefile.in 12784cdce5ffc8dfb707300c34e4f1eb3b8a14f1
F Makefile.linux-gcc 06be33b2a9ad4f005a5f42b22c4a19dab3cbb5c7 F Makefile.linux-gcc 06be33b2a9ad4f005a5f42b22c4a19dab3cbb5c7
F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@@ -274,9 +274,9 @@ F www/copyright-release.pdf cfca3558fc97095e57c6117d08f1f5b80d95125a
F www/copyright.tcl 82c9670c7ddb0311912ab7fe24703f33c531066c F www/copyright.tcl 82c9670c7ddb0311912ab7fe24703f33c531066c
F www/datatype3.tcl 1d14f70ab73075556b95e76a5c13e5b03f7f6c47 F www/datatype3.tcl 1d14f70ab73075556b95e76a5c13e5b03f7f6c47
F www/datatypes.tcl 7c786d2e8ff434346764534ec015966d17efce60 F www/datatypes.tcl 7c786d2e8ff434346764534ec015966d17efce60
F www/different.tcl d01064946c588db0a0e87563a30aef1b3efb4434 F www/different.tcl 81377eb0c8e27d3bdf812bde357281c4c44bec0c
F www/direct1b.gif 32b48b764244817b6b591898dc52a04299a7b8a7 F www/direct1b.gif 32b48b764244817b6b591898dc52a04299a7b8a7
F www/docs.tcl 8fec3341bb9b0d0b09a0d4e33055825cdd69642c F www/docs.tcl 4e2d716f004cc4c4dae773206ed58f50d4468a87
F www/download.tcl ceaa742d5b8137bce31e9dcc4e44494b38211490 F www/download.tcl ceaa742d5b8137bce31e9dcc4e44494b38211490
F www/dynload.tcl 02eb8273aa78cfa9070dd4501dca937fb22b466c F www/dynload.tcl 02eb8273aa78cfa9070dd4501dca937fb22b466c
F www/faq.tcl cdeb014235ac8030da593bde14a53240d4daa613 F www/faq.tcl cdeb014235ac8030da593bde14a53240d4daa613
@@ -306,7 +306,7 @@ F www/tclsqlite.tcl 3df553505b6efcad08f91e9b975deb2e6c9bb955
F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
F www/version3.tcl a99cf5f6d8bd4d5537584a2b342f0fb9fa601d8b F www/version3.tcl a99cf5f6d8bd4d5537584a2b342f0fb9fa601d8b
F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513 F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513
P 21adf4bd99e732650a1e8e9a1cc954126983a654 P ed4e9e751be2b982af9561aba20c8e1367828b81
R 1b2c45fe52bc4bea506808403b359830 R 468ad3e318161c026b4cb9009d09f94a
U drh U drh
Z 77d413f88178ed3fa9ab51dd46624a7d Z d8dcff3d43c3646ebdf94f6697478e41

View File

@@ -1 +1 @@
ed4e9e751be2b982af9561aba20c8e1367828b81 73fbb8d9689fecec18c36814e4358e691bcd647e

View File

@@ -1,4 +1,4 @@
set rcsid {$Id: different.tcl,v 1.5 2005/04/01 16:29:12 drh Exp $} set rcsid {$Id: different.tcl,v 1.6 2005/09/08 11:04:57 drh Exp $}
source common.tcl source common.tcl
header {Distinctive Features Of SQLite} header {Distinctive Features Of SQLite}
puts { puts {
@@ -212,8 +212,8 @@ feature extensions {SQL language extensions} {
<a href="lang_detach.html">DETACH</a> commands that allow multiple <a href="lang_detach.html">DETACH</a> commands that allow multiple
independent databases to be used together in the same query. independent databases to be used together in the same query.
And SQLite defines APIs that allows the user to add new And SQLite defines APIs that allows the user to add new
<a href="capi3ref.html#sqlite3_create_function>SQL functions</a> <a href="capi3ref.html#sqlite3_create_function">SQL functions</a>
and <a href="capi3ref.html#sqlite3_create_collation>collating sequences</a>. and <a href="capi3ref.html#sqlite3_create_collation">collating sequences</a>.
} }

View File

@@ -1,7 +1,7 @@
# This script generates the "docs.html" page that describes various # This script generates the "docs.html" page that describes various
# sources of documentation available for SQLite. # sources of documentation available for SQLite.
# #
set rcsid {$Id: docs.tcl,v 1.12 2005/08/31 03:13:12 drh Exp $} set rcsid {$Id: docs.tcl,v 1.13 2005/09/08 11:04:57 drh Exp $}
source common.tcl source common.tcl
header {SQLite Documentation} header {SQLite Documentation}
puts { puts {
@@ -14,7 +14,7 @@ proc doc {name url desc} {
regsub -all { +} $name {\&nbsp;} name regsub -all { +} $name {\&nbsp;} name
puts "<a href=\"$url\">$name</a></td>" puts "<a href=\"$url\">$name</a></td>"
puts {<td width="10"></td>} puts {<td width="10"></td>}
puts {<td align="top" align="left">} puts {<td valign="top" align="left">}
puts $desc puts $desc
puts {</td></tr>} puts {</td></tr>}
} }