Skip to content

Commit

Permalink
Merge pull request civetweb#947 from timgates42/bugfix_typo_pending
Browse files Browse the repository at this point in the history
docs: fix simple typo, pendig -> pending
  • Loading branch information
bel2125 authored Dec 1, 2020
2 parents 73fd993 + 4e15289 commit 617670e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/third_party/sqlite3.c
Original file line number Diff line number Diff line change
Expand Up @@ -35263,7 +35263,7 @@ static int unixLock(sqlite3_file *id, int eFileLock){

/* Make sure the locking sequence is correct.
** (1) We never move from unlocked to anything higher than shared lock.
** (2) SQLite never explicitly requests a pendig lock.
** (2) SQLite never explicitly requests a pending lock.
** (3) A shared lock is always held when a reserve lock is requested.
*/
assert( pFile->eFileLock!=NO_LOCK || eFileLock==SHARED_LOCK );
Expand Down Expand Up @@ -36481,7 +36481,7 @@ static int afpLock(sqlite3_file *id, int eFileLock){

/* Make sure the locking sequence is correct
** (1) We never move from unlocked to anything higher than shared lock.
** (2) SQLite never explicitly requests a pendig lock.
** (2) SQLite never explicitly requests a pending lock.
** (3) A shared lock is always held when a reserve lock is requested.
*/
assert( pFile->eFileLock!=NO_LOCK || eFileLock==SHARED_LOCK );
Expand Down

0 comments on commit 617670e

Please sign in to comment.