diff options
author | stephan <stephan@noemail.net> | 2024-02-23 18:02:31 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2024-02-23 18:02:31 +0000 |
commit | b088e892a09a95b6929e87a4cc7091644d75fa47 (patch) | |
tree | e9345ea84060e188811dd982f8bbf74e247e6f68 /src | |
parent | f7ad684c5a3f79565e8d9e4ba0706fcdc80507da (diff) | |
download | sqlite-b088e892a09a95b6929e87a4cc7091644d75fa47.tar.gz sqlite-b088e892a09a95b6929e87a4cc7091644d75fa47.zip |
Typo fixes [forum:c19bbf245d|reported in the forum]. No code changes.
FossilOrigin-Name: 67d8bae0f695c0839e724c1aadea0a22f736fdd9664d40a29b4d82c91fb89ab3
Diffstat (limited to 'src')
-rw-r--r-- | src/sqlite.h.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sqlite.h.in b/src/sqlite.h.in index f21cffd51..e05d7b231 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -764,11 +764,11 @@ struct sqlite3_file { ** </ul> ** xLock() upgrades the database file lock. In other words, xLock() moves the ** database file lock in the direction NONE toward EXCLUSIVE. The argument to -** xLock() is always on of SHARED, RESERVED, PENDING, or EXCLUSIVE, never +** xLock() is always one of SHARED, RESERVED, PENDING, or EXCLUSIVE, never ** SQLITE_LOCK_NONE. If the database file lock is already at or above the ** requested lock, then the call to xLock() is a no-op. ** xUnlock() downgrades the database file lock to either SHARED or NONE. -* If the lock is already at or below the requested lock state, then the call +** If the lock is already at or below the requested lock state, then the call ** to xUnlock() is a no-op. ** The xCheckReservedLock() method checks whether any database connection, ** either in this process or in some other process, is holding a RESERVED, |