@@ -36,12 +36,12 @@ extern NSString *const kFTSCommandAutoMerge; // "automerge=%u"
3636+ (void )registerTokenizer : (id <FMTokenizerDelegate>)tokenizer withKey : (NSString *)key ;
3737
3838/* *
39- Calls the ` fts3_tokenizer()` function on this database, installing tokenizer module with the 'fmdb' name.
39+ Calls the @c fts3_tokenizer function on this database, installing tokenizer module with the 'fmdb' name.
4040 */
4141- (BOOL )installTokenizerModule ;
4242
4343/* *
44- Calls the ` fts3_tokenizer()` function on this database, installing the tokenizer module with specified name.
44+ Calls the @c fts3_tokenizer function on this database, installing the tokenizer module with specified name.
4545 */
4646- (BOOL )installTokenizerModuleWithName : (NSString *)name ;
4747
@@ -89,8 +89,8 @@ typedef struct FMTokenizerCursor
8989
9090/* *
9191 Enumerate each set of offsets in the result. The column number can be turned into a column name
92- using `[FMResultSet columnNameForIndex:]`. The ` matchRange` is in UTF-8 byte positions, so it must be
93- modified to use with ` NSString` data.
92+ using `[FMResultSet columnNameForIndex:]`. The @c matchRange is in UTF-8 byte positions, so it must be
93+ modified to use with @c NSString data.
9494 */
9595- (void )enumerateWithBlock : (void (^)(NSInteger columnNumber, NSInteger termNumber, NSRange matchRange))block ;
9696
@@ -102,12 +102,12 @@ typedef struct FMTokenizerCursor
102102@interface FMResultSet (FTS3)
103103
104104/* *
105- Returns a structure containing values from the ` offsets()` function. Make sure the column index corresponds
105+ Returns a structure containing values from the @c offsets function. Make sure the column index corresponds
106106 to the column index in the SQL query.
107107
108108 @param columnIdx Zero-based index for column.
109109
110- @return ` FMTextOffsets` structure.
110+ @return @c FMTextOffsets structure.
111111 */
112112- (FMTextOffsets *)offsetsForColumnIndex : (int )columnIdx ;
113113
0 commit comments