Skip to content

Commit de0368d

Browse files
Jesper Dangaard Brouerdavem330
authored andcommitted
textsearch: doc - fix spelling in lib/textsearch.c.
Found the following spelling errors while reading the textsearch code: "facitilies" -> "facilities" "continously" -> "continuously" "arbitary" -> "arbitrary" "patern" -> "pattern" "occurences" -> "occurrences" I'll try to push this patch through DaveM, given the only users of textsearch is in the net/ tree (nf_conntrack_amanda.c, xt_string.c and em_text.c) Signed-off-by: Jesper Sander <sander.contrib@gmail.com> Signed-off-by: Jesper Dangaard Brouer <hawk@comx.dk> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 986e3f6 commit de0368d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lib/textsearch.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
*
1414
* INTRODUCTION
1515
*
16-
* The textsearch infrastructure provides text searching facitilies for
16+
* The textsearch infrastructure provides text searching facilities for
1717
* both linear and non-linear data. Individual search algorithms are
1818
* implemented in modules and chosen by the user.
1919
*
@@ -43,7 +43,7 @@
4343
* to the algorithm to store persistent variables.
4444
* (4) Core eventually resets the search offset and forwards the find()
4545
* request to the algorithm.
46-
* (5) Algorithm calls get_next_block() provided by the user continously
46+
* (5) Algorithm calls get_next_block() provided by the user continuously
4747
* to fetch the data to be searched in block by block.
4848
* (6) Algorithm invokes finish() after the last call to get_next_block
4949
* to clean up any leftovers from get_next_block. (Optional)
@@ -58,15 +58,15 @@
5858
* the pattern to look for and flags. As a flag, you can set TS_IGNORECASE
5959
* to perform case insensitive matching. But it might slow down
6060
* performance of algorithm, so you should use it at own your risk.
61-
* The returned configuration may then be used for an arbitary
61+
* The returned configuration may then be used for an arbitrary
6262
* amount of times and even in parallel as long as a separate struct
6363
* ts_state variable is provided to every instance.
6464
*
6565
* The actual search is performed by either calling textsearch_find_-
6666
* continuous() for linear data or by providing an own get_next_block()
6767
* implementation and calling textsearch_find(). Both functions return
68-
* the position of the first occurrence of the patern or UINT_MAX if
69-
* no match was found. Subsequent occurences can be found by calling
68+
* the position of the first occurrence of the pattern or UINT_MAX if
69+
* no match was found. Subsequent occurrences can be found by calling
7070
* textsearch_next() regardless of the linearity of the data.
7171
*
7272
* Once you're done using a configuration it must be given back via

0 commit comments

Comments
 (0)