Skip to content

Commit 832bc1a

Browse files
authored
Merge pull request groue#1660 from nylki/patch-1
docs: fixes typos "FST"->"FTS"
2 parents 3ecb5c5 + 910ca2d commit 832bc1a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Documentation/FTS5Tokenizers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FTS5 Tokenizers
33

44
**[FTS5](https://www.sqlite.org/fts5.html) is an extensible full-text search engine.**
55

6-
GRDB lets you define your own custom FST5 tokenizers, and extend SQLite built-in tokenizers. Possible use cases are:
6+
GRDB lets you define your own custom FTS5 tokenizers, and extend SQLite built-in tokenizers. Possible use cases are:
77

88
- Have "fi" match the ligature "fi" (U+FB01)
99
- Have "first" match "1st"
@@ -95,7 +95,7 @@ let documents = try Document.matching(pattern).fetchAll(db)
9595

9696
## FTS5Tokenizer
9797

98-
**FST5Tokenizer** is the protocol for all FTS5 tokenizers.
98+
**FTS5Tokenizer** is the protocol for all FTS5 tokenizers.
9999

100100
It only requires a tokenization method that matches the low-level `xTokenize` C function documented at https://www.sqlite.org/fts5.html#custom_tokenizers. We'll discuss it more when describing custom tokenizers.
101101

Documentation/FullTextSearch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Generally speaking, FTS5 is better than FTS4 which improves on FTS3. But this do
8282

8383
- **The location of the indexed text in your database schema.** Only FTS4 and FTS5 support "contentless" and "external content" tables.
8484

85-
- See [FST3 vs. FTS4](https://www.sqlite.org/fts3.html#differences_between_fts3_and_fts4) and [FTS5 vs. FTS3/4](https://www.sqlite.org/fts5.html#appendix_a) for more differences.
85+
- See [FTS3 vs. FTS4](https://www.sqlite.org/fts3.html#differences_between_fts3_and_fts4) and [FTS5 vs. FTS3/4](https://www.sqlite.org/fts5.html#appendix_a) for more differences.
8686

8787
> **Note**: In case you were still wondering, it is recommended to read the SQLite documentation: [FTS3 & FTS4](https://www.sqlite.org/fts3.html) and [FTS5](https://www.sqlite.org/fts5.html).
8888

0 commit comments

Comments
 (0)