Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt711 committed Oct 13, 2024
1 parent 37c9107 commit 6de3871
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/pylibcudf/pylibcudf/nvtext/normalize.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ cpdef Column normalize_characters(Column input, bool do_lower_case):
cdef unique_ptr[column] c_result

with nogil:
c_result = cpp_normalize_characters(input.view(), do_lower)
c_result = cpp_normalize_characters(input.view(), do_lower_case)

return Column.from_libcudf(move(c_result))

0 comments on commit 6de3871

Please sign in to comment.