Skip to content
Snippets Groups Projects
Verified Commit 8f257a3b authored by Gärber, Florian's avatar Gärber, Florian
Browse files

fix: Warning caused by using non-ASCII in code.

parent 1051f74e
Branches
Tags
No related merge requests found
......@@ -188,8 +188,8 @@ opusreader2_to_hyperSpec <- function(
if (cols_to_drop |> length() > 0) {
warning(paste(
"Dropping the following columns due to not being present in every file being loaded:\n·",
data_cols_tbl[which(data_cols_tbl != length(opusreader2_list))] |> names() |> paste(collapse = "\n· ")
"Dropping the following columns due to not being present in every file being loaded:\n-",
data_cols_tbl[which(data_cols_tbl != length(opusreader2_list))] |> names() |> paste(collapse = "\n- ")
))
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment