mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-23 09:24:31 +02:00
Fix for rogue quote in enable-fts --help
This commit is contained in:
parent
fa5d66bf53
commit
8ee0b7c65c
2 changed files with 2 additions and 2 deletions
|
|
@ -1028,7 +1028,7 @@ See :ref:`cli_fts`.
|
|||
|
||||
Usage: sqlite-utils enable-fts [OPTIONS] PATH TABLE COLUMN...
|
||||
|
||||
Enable full-text search for specific table and columns"
|
||||
Enable full-text search for specific table and columns
|
||||
|
||||
Example:
|
||||
|
||||
|
|
|
|||
|
|
@ -706,7 +706,7 @@ def create_index(
|
|||
def enable_fts(
|
||||
path, table, column, fts4, fts5, tokenize, create_triggers, replace, load_extension
|
||||
):
|
||||
"""Enable full-text search for specific table and columns"
|
||||
"""Enable full-text search for specific table and columns
|
||||
|
||||
Example:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue