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

Correct typos in comments. No changes to code.

FossilOrigin-Name: 55879932116d373c95a5f32ec44b53a9c3f4db24
This commit is contained in:
mistachkin
2014-09-18 18:55:47 +00:00
parent 74eaba4de2
commit 26c79a060b
3 changed files with 11 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
C Merge\sthe\sMem.r\svalue\sinto\sthe\sMemValue\sunion\sas\sMem.u.r.\s\sHence,\sa\sMem\scan\nnow\sstore\san\sinteger\sor\sa\sreal\sbut\snot\sboth\sat\sthe\ssame\stime.\s\sStrings\sare\nstill\sstored\sin\sa\sseparate\selement\sMem.z,\sfor\snow. C Correct\stypos\sin\scomments.\s\sNo\schanges\sto\scode.
D 2014-09-18T17:52:15.374 D 2014-09-18T18:55:47.619
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
F Makefile.in cf57f673d77606ab0f2d9627ca52a9ba1464146a F Makefile.in cf57f673d77606ab0f2d9627ca52a9ba1464146a
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -290,7 +290,7 @@ F src/util.c 4006c01772bd8d8ac4306d523bbcee41d3e392d8
F src/vacuum.c 59f03f92bcff57faa6a8ca256eb29ccddfb0614a F src/vacuum.c 59f03f92bcff57faa6a8ca256eb29ccddfb0614a
F src/vdbe.c 17f285ff89d73b6af5bd1fc90c0943341f4003d5 F src/vdbe.c 17f285ff89d73b6af5bd1fc90c0943341f4003d5
F src/vdbe.h 09f5b4e3719fa454f252322b1cdab5cf1f361327 F src/vdbe.h 09f5b4e3719fa454f252322b1cdab5cf1f361327
F src/vdbeInt.h 45a0b4c5e4b38a2ff8af05102d45e7fa2e6c4439 F src/vdbeInt.h 1c31448d9d4f074e93863ebe69164ff29cc4f7f8
F src/vdbeapi.c 88929e02676fdbd5f436fcfd63fa0d371756a7ce F src/vdbeapi.c 88929e02676fdbd5f436fcfd63fa0d371756a7ce
F src/vdbeaux.c ac3188f182f25eac58923b1a3c0840c69949ed28 F src/vdbeaux.c ac3188f182f25eac58923b1a3c0840c69949ed28
F src/vdbeblob.c 848238dc73e93e48432991bb5651bf87d865eca4 F src/vdbeblob.c 848238dc73e93e48432991bb5651bf87d865eca4
@@ -1198,7 +1198,7 @@ F tool/vdbe_profile.tcl 67746953071a9f8f2f668b73fe899074e2c6d8c1
F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
F tool/warnings.sh 0abfd78ceb09b7f7c27c688c8e3fe93268a13b32 F tool/warnings.sh 0abfd78ceb09b7f7c27c688c8e3fe93268a13b32
F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
P d7afdcbac24350b73a30c06c45cf0f2122820e4f P 4c8c89d7e62aecfe2eb735f7bb114aed6b452847
R 320866568edfdafc16dd0b942dd87d16 R a232caa53ffd8c1fd2d0c9fb51cf1463
U drh U mistachkin
Z 7641aa17b0b2d51a4b828447b0d0dc99 Z b2beb30c7e105753dffdcae3bc62d871

View File

@@ -1 +1 @@
4c8c89d7e62aecfe2eb735f7bb114aed6b452847 55879932116d373c95a5f32ec44b53a9c3f4db24

View File

@@ -162,7 +162,7 @@ struct VdbeFrame {
*/ */
struct Mem { struct Mem {
union MemValue { union MemValue {
double r; /* Real value used when MEM_Realis set in flags */ double r; /* Real value used when MEM_Real is set in flags */
i64 i; /* Integer value used when MEM_Int is set in flags */ i64 i; /* Integer value used when MEM_Int is set in flags */
int nZero; /* Used when bit MEM_Zero is set in flags */ int nZero; /* Used when bit MEM_Zero is set in flags */
FuncDef *pDef; /* Used only when flags==MEM_Agg */ FuncDef *pDef; /* Used only when flags==MEM_Agg */
@@ -268,13 +268,13 @@ struct AuxData {
*/ */
struct sqlite3_context { struct sqlite3_context {
Mem *pOut; /* The return value is stored here */ Mem *pOut; /* The return value is stored here */
FuncDef *pFunc; /* Pointer to function information. MUST BE FIRST */ FuncDef *pFunc; /* Pointer to function information */
Mem *pMem; /* Memory cell used to store aggregate context */ Mem *pMem; /* Memory cell used to store aggregate context */
CollSeq *pColl; /* Collating sequence */ CollSeq *pColl; /* Collating sequence */
Vdbe *pVdbe; /* The VM that owns this context */ Vdbe *pVdbe; /* The VM that owns this context */
int iOp; /* Instruction number of OP_Function */ int iOp; /* Instruction number of OP_Function */
int isError; /* Error code returned by the function. */ int isError; /* Error code returned by the function. */
u8 skipFlag; /* Skip skip accumulator loading if true */ u8 skipFlag; /* Skip accumulator loading if true */
u8 fErrorOrAux; /* isError!=0 or pVdbe->pAuxData modified */ u8 fErrorOrAux; /* isError!=0 or pVdbe->pAuxData modified */
}; };