diff options
| author | Jost Alemann <58050402+ddogfoodd@users.noreply.github.com> | 2025-05-20 19:03:54 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-20 21:03:54 +0200 |
| commit | 7420706a5074803a78f3c795cf79427746e504e0 (patch) | |
| tree | 67b3ed9c28fe3d145d2d3ab8eaa96ebd5bd34714 /searx/sqlitedb.py | |
| parent | 6ec554cb5b014dc362c9dc6c4618a6614199911d (diff) | |
[chore] fix some docstring typos (#4815)
Diffstat (limited to 'searx/sqlitedb.py')
| -rw-r--r-- | searx/sqlitedb.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/sqlitedb.py b/searx/sqlitedb.py index 364b43db3..95466eac9 100644 --- a/searx/sqlitedb.py +++ b/searx/sqlitedb.py @@ -114,7 +114,7 @@ class SQLiteAppl(abc.ABC): """ SQLITE_JOURNAL_MODE = "WAL" - """``SQLiteAppl`` applications are optimzed for WAL_ mode, its not recommend + """``SQLiteAppl`` applications are optimized for WAL_ mode, its not recommend to change the journal mode (see :py:obj:`SQLiteAppl.tear_down`). .. _WAL: https://sqlite.org/wal.html @@ -145,7 +145,7 @@ class SQLiteAppl(abc.ABC): - https://github.com/python/cpython/issues/118172 - https://github.com/python/cpython/issues/123873 - The workaround for SQLite3 multithreading cache inconsistency ist to set + The workaround for SQLite3 multithreading cache inconsistency is to set option ``cached_statements`` to ``0`` by default. """ |