aboutsummaryrefslogtreecommitdiff
path: root/ext/fts3/fts3_snippet.c
diff options
context:
space:
mode:
authormistachkin <mistachkin@noemail.net>2013-03-21 21:20:32 +0000
committermistachkin <mistachkin@noemail.net>2013-03-21 21:20:32 +0000
commit48864df97d4a09bb229b0a298bb458db31524432 (patch)
treefb1e71cea24aa612610e85d9b92a49ab8bd67f27 /ext/fts3/fts3_snippet.c
parent0e5fba790a07c2d3697b63a81d4e068be32dc707 (diff)
downloadsqlite-48864df97d4a09bb229b0a298bb458db31524432.tar.gz
sqlite-48864df97d4a09bb229b0a298bb458db31524432.zip
Many spelling fixes in comments. No changes to code.
FossilOrigin-Name: 6f6e2d50941e444ebc83604daddcc034137a05b7
Diffstat (limited to 'ext/fts3/fts3_snippet.c')
-rw-r--r--ext/fts3/fts3_snippet.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/fts3/fts3_snippet.c b/ext/fts3/fts3_snippet.c
index 4bee014dc..d54a7875e 100644
--- a/ext/fts3/fts3_snippet.c
+++ b/ext/fts3/fts3_snippet.c
@@ -389,9 +389,9 @@ static int fts3SnippetFindPositions(Fts3Expr *pExpr, int iPhrase, void *ctx){
** is the snippet with the highest score, where scores are calculated
** by adding:
**
-** (a) +1 point for each occurence of a matchable phrase in the snippet.
+** (a) +1 point for each occurrence of a matchable phrase in the snippet.
**
-** (b) +1000 points for the first occurence of each matchable phrase in
+** (b) +1000 points for the first occurrence of each matchable phrase in
** the snippet for which the corresponding mCovered bit is not set.
**
** The selected snippet parameters are stored in structure *pFragment before