Skip to content

Commit 75e77dd

Browse files
authored
Fix typo in comment (#5)
`regex_fund_at` -> `regex_find_at`
1 parent 627de9c commit 75e77dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/regex.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ pub fn regex_find(context: *mut sqlite3_context, values: &[*mut sqlite3_value])
7474
Ok(())
7575
}
7676

77-
/// regex_fund_at(regex, contents, offset)
77+
/// regex_find_at(regex, contents, offset)
7878
pub fn regex_find_at(context: *mut sqlite3_context, values: &[*mut sqlite3_value]) -> Result<()> {
7979
let (regex, input_type) = regex_from_value_or_cache(context, values, 0)?;
8080

0 commit comments

Comments
 (0)