typos
#279
Replies: 1 comment
-
Another typo in language names |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Working with the R version I came across a couple of typos which I would fix on the fly like this, but which should be fixed in the original files:
typo in a language name
where_error_1 <- which(clc_file$language_name_wals=="Guraní")
clc_file$language_name_wals[where_error_1] <- "Guaraní"
wrong WALS code for Canela, it should not be ckr but cnl
where_error_2 <- which(clc_language$name_wals=="Canela-Krahô")
clc_language$wals_code[where_error_2] <- "cnl"
Beta Was this translation helpful? Give feedback.
All reactions