Skip to content

Commit

Permalink
fix doxygen wording
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwendt committed Oct 27, 2023
1 parent 9741a1d commit d01ea55
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cpp/include/nvtext/tokenize.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ namespace nvtext {
*
* All null row entries are ignored and the output contains all valid rows.
*
* @param input Strings column tokenize
* @param input Strings column to tokenize
* @param delimiter UTF-8 characters used to separate each string into tokens.
* The default of empty string will separate tokens using whitespace.
* @param stream CUDA stream used for device memory operations and kernel launches
Expand Down Expand Up @@ -116,7 +116,7 @@ std::unique_ptr<cudf::column> tokenize(
* All null row entries are ignored and the output contains all valid rows.
* The number of tokens for a null element is set to 0 in the output column.
*
* @param input Strings column to use for this operation
* @param input Strings column to count tokens
* @param delimiter Strings used to separate each string into tokens.
* The default of empty string will separate tokens using whitespace.
* @param stream CUDA stream used for device memory operations and kernel launches
Expand Down Expand Up @@ -149,7 +149,7 @@ std::unique_ptr<cudf::column> count_tokens(
*
* @throw cudf::logic_error if the delimiters column is empty or contains nulls
*
* @param input Strings column to use for this operation
* @param input Strings column to count tokens
* @param delimiters Strings used to separate each string into tokens
* @param stream CUDA stream used for device memory operations and kernel launches
* @param mr Device memory resource used to allocate the returned column's device memory
Expand Down

0 comments on commit d01ea55

Please sign in to comment.