We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b739035 + 374248c commit f9a830bCopy full SHA for f9a830b
inst/hooks/exported/spell-check.R
@@ -38,7 +38,7 @@ if (nrow(spelling_errors) > 0) {
38
original = unique(c(ignore, spelling_errors$word))
39
)
40
ignore_df$lower <- tolower(ignore_df$original)
41
- ignore_df <- ignore_df[order(ignore_df$lower), ]
+ ignore_df <- ignore_df[order(ignore_df$lower, method = "radix"), ]
42
ignore <- ignore_df$original[ignore_df$lower != ""] # drop blanks if any
43
writeLines(ignore, path_wordlist)
44
cat(
0 commit comments