diff options
author | drh <drh@noemail.net> | 2020-05-24 00:30:38 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2020-05-24 00:30:38 +0000 |
commit | 16dc07f7568bb2063d159fb41ab68ccf749c5e84 (patch) | |
tree | b5a42b6c8a9d00884b4dabad8b7c0cf65ad90764 /src/sqliteInt.h | |
parent | dd6c33d372f3b83f4fe57904c2bd5ebba5c38018 (diff) | |
download | sqlite-16dc07f7568bb2063d159fb41ab68ccf749c5e84.tar.gz sqlite-16dc07f7568bb2063d159fb41ab68ccf749c5e84.zip |
Minor fix to a comment. No code changes.
FossilOrigin-Name: efdbb2b499bda8ffcfe54f5d6ece08a2c58fe7a490d9550785d806bd404abb8c
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 2b1c48319..f82efca95 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -2486,7 +2486,7 @@ struct Token { ** code for a SELECT that contains aggregate functions. ** ** If Expr.op==TK_AGG_COLUMN or TK_AGG_FUNCTION then Expr.pAggInfo is a -** pointer to this structure. The Expr.iColumn field is the index in +** pointer to this structure. The Expr.iAgg field is the index in ** AggInfo.aCol[] or AggInfo.aFunc[] of information needed to generate ** code for that node. ** |