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

Fix a typo in a comment. No changes to code.

FossilOrigin-Name: 332cb55113a621456c6522830585434146c388e7
This commit is contained in:
drh
2010-04-08 17:35:34 +00:00
parent f12cde5637
commit 9e48165b07
3 changed files with 11 additions and 11 deletions

View File

@@ -403,7 +403,7 @@ lookupname_end:
/*
** Allocate and return a pointer to an expression to load the column iCol
** from datasource iSrc datasource in SrcList pSrc.
** from datasource iSrc in SrcList pSrc.
*/
Expr *sqlite3CreateColumnExpr(sqlite3 *db, SrcList *pSrc, int iSrc, int iCol){
Expr *p = sqlite3ExprAlloc(db, TK_COLUMN, 0, 0);