From 38677366b3e75f3506fec92a29781d86898d5897 Mon Sep 17 00:00:00 2001 From: Arkadiusz Gladki Date: Mon, 7 Oct 2024 15:33:57 +0200 Subject: [PATCH] doc: update doc --- R/duplicates.R | 2 +- man/has_dt_duplicated_rows.Rd | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/R/duplicates.R b/R/duplicates.R index 5d383c40..24074e3b 100644 --- a/R/duplicates.R +++ b/R/duplicates.R @@ -7,7 +7,7 @@ #' @examples #' dt <- data.table::data.table(a = c(1, 2, 3), b = c(3, 2, 2)) #' has_dt_duplicated_rows(dt, "b") -#' @return logical flag +#' @return logical flag indicating if a dt contains duplicated rows or not #' @keywords duplicates #' #' @export diff --git a/man/has_dt_duplicated_rows.Rd b/man/has_dt_duplicated_rows.Rd index db7b5022..7e7daa0f 100644 --- a/man/has_dt_duplicated_rows.Rd +++ b/man/has_dt_duplicated_rows.Rd @@ -12,7 +12,7 @@ has_dt_duplicated_rows(dt, col_names = NULL) \item{col_names}{charvec with columns to be used for subsetting} } \value{ -logical flag +logical flag indicating if a dt contains duplicated rows or not } \description{ An auxiliary function that checks for duplicates in the data.table (or its subset)