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

Comment changes only (CVS 166)

FossilOrigin-Name: 5518e012bf35821f65fe2ca7cbafca6a97e7a4ac
This commit is contained in:
drh
2000-11-28 20:47:17 +00:00
parent d9a4698e5f
commit 66b89c8f68
5 changed files with 18 additions and 18 deletions

View File

@@ -23,7 +23,7 @@
*************************************************************************
** Internal interface definitions for SQLite.
**
** @(#) $Id: sqliteInt.h,v 1.31 2000/10/16 22:06:42 drh Exp $
** @(#) $Id: sqliteInt.h,v 1.32 2000/11/28 20:47:23 drh Exp $
*/
#include "sqlite.h"
#include "dbbe.h"
@@ -168,7 +168,7 @@ struct Table {
};
/*
** Each SQL index is represented in memory by and
** Each SQL index is represented in memory by an
** instance of the following structure.
**
** The columns of the table that are to be indexed are described
@@ -201,7 +201,7 @@ struct Index {
** this structure.
*/
struct Token {
char *z; /* Text of the token */
char *z; /* Text of the token. Not NULL-terminated! */
int n; /* Number of characters in this token */
};