From dc2b73a9b058eee449b34f7acfea6f26db33c10f Mon Sep 17 00:00:00 2001 From: manszamore Date: Tue, 7 Feb 2023 10:07:27 +0100 Subject: [PATCH] Change wording --- R/reactive_values.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/reactive_values.R b/R/reactive_values.R index a3a08b8..5ad51af 100644 --- a/R/reactive_values.R +++ b/R/reactive_values.R @@ -18,7 +18,7 @@ setup_reactive_values_obj <- function(input) { if (is_design_file) { raw_df <- raw_df %>% - mutate_all(make.names) # Run make.names on all elements of the design matrix + mutate_all(make.names) # Run make.names on all variables of the design matrix } else { colnames(raw_df) <- make.names(colnames(raw_df)) }