Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mroeschke committed Sep 17, 2024
1 parent 221f280 commit 81f49dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cudf/cudf/_lib/strings/contains.pyx
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@ def match_re(Column source_strings, object reg_ex, uint32_t flags):
"""
prog = RegexProgram.create(str(reg_ex), flags)
return Column.from_pylibcudf(
contains.match_re(source_strings.to_pylibcudf(mode="read"), prog)
contains.matches_re(source_strings.to_pylibcudf(mode="read"), prog)
)


0 comments on commit 81f49dc

Please sign in to comment.