diff options
author | drh <> | 2023-05-10 10:03:28 +0000 |
---|---|---|
committer | drh <> | 2023-05-10 10:03:28 +0000 |
commit | d733ee5cca2dbad91f99a193cb1d41e94e983df9 (patch) | |
tree | 61efb49445c3624a1bac4943ea8c42574e3de04f /src | |
parent | 88a99437b96b5dde81c45bd311d4127966b97339 (diff) | |
download | sqlite-d733ee5cca2dbad91f99a193cb1d41e94e983df9.tar.gz sqlite-d733ee5cca2dbad91f99a193cb1d41e94e983df9.zip |
Add a missing comma to the documentation for the OP_Jump opcode. No changes
to code.
FossilOrigin-Name: 7e2c2b1cee760af68cf303ce9ec1babbaf607fe54e043893c046d2d37cd0ab46
Diffstat (limited to 'src')
-rw-r--r-- | src/vdbe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vdbe.c b/src/vdbe.c index ea2e6fc5b..2aa4e6df2 100644 --- a/src/vdbe.c +++ b/src/vdbe.c @@ -2399,7 +2399,7 @@ case OP_Compare: { /* Opcode: Jump P1 P2 P3 * * ** ** Jump to the instruction at address P1, P2, or P3 depending on whether -** in the most recent OP_Compare instruction the P1 vector was less than +** in the most recent OP_Compare instruction the P1 vector was less than, ** equal to, or greater than the P2 vector, respectively. ** ** This opcode must immediately follow an OP_Compare opcode. |