brunobrr / bdc

Check out the vignettes with detailed documentation on each module of the bdc package
https://brunobrr.github.io/bdc
GNU General Public License v3.0
23 stars 7 forks source link

change unicode escaping characters to lower case #224

Closed kguidonimartins closed 2 years ago

kguidonimartins commented 2 years ago

This change tries to solve the following issue on CRAN when on debian-clang server:

"Warning: unable to re-encode 'bdc_clean_names.R' line 934"

Non-ASCII characters were re-encoded using the stringi::stri_escape_unicode() function:

Ex:

stringi::stri_escape_unicode("´")
##> \\u00b4

However, there is no guarantee that this change will solve the problem.