Skip to content

Commit a73c5d5

Browse files
committed
Fix various FTS5 related doc formatting errors
1 parent 1c61f91 commit a73c5d5

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

apsw/fts5.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1506,8 +1506,8 @@ def upsert(self, *args: apsw.SQLiteValue, **kwargs: apsw.SQLiteValue) -> int:
15061506
15071507
The rowid of the inserted/modified row is returned.
15081508
1509-
If you are using an [external
1510-
content](https://www.sqlite.org/fts5.html#external_content_tables)
1509+
If you are using an `external
1510+
content <https://www.sqlite.org/fts5.html#external_content_tables>`__
15111511
table:
15121512
15131513
* The insert will be directed to the external content table

doc/textsearch.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ text into ascii text that sounds approximately similar::
513513
Available auxiliary functions
514514
=============================
515515

516-
SQLite includes X builtin auxiliary functions, with APSW providing
516+
SQLite includes 3 builtin auxiliary functions, with APSW providing
517517
some more.
518518

519519
.. list-table::

examples/fts.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -319,10 +319,10 @@
319319

320320
### fts5_auxfunc: Auxiliary functions
321321
# `Auxiliary functions
322-
# <https://sqlite.org/fts5.html#_auxiliary_functions_>__ are called
322+
# <https://sqlite.org/fts5.html#_auxiliary_functions_>`__ are called
323323
# for each matching row. They can be used to provide `ranking
324324
# (sorting)
325-
# <https://www.sqlite.org/fts5.html#sorting_by_auxiliary_function_results>`__`
325+
# <https://www.sqlite.org/fts5.html#sorting_by_auxiliary_function_results>`__
326326
# for determining better matches, or returning information about the
327327
# match and row such as `highlights
328328
# <https://www.sqlite.org/fts5.html#the_highlight_function>`__, and

0 commit comments

Comments
 (0)