Skip to content

Commit

Permalink
Fix record_reliability lookup table
Browse files Browse the repository at this point in the history
  • Loading branch information
wkmor1 committed Sep 20, 2023
1 parent 8a1d3e0 commit caa7c8a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions R/sysdata.R
Original file line number Diff line number Diff line change
Expand Up @@ -1074,10 +1074,10 @@ record_reliability <- function() {
r <- c("RELIABLE", "NEUTRAL", "UNRELIABLE")

reliability <- list(
code = c("reliable", "undefined", "unreliable"),
name_en = c("Reliable", "Undefined", "Unreliable"),
code = c("reliable", "unassessed", "Unreliable"),
name_en = c("Reliable", "Unassessed", "Unreliable"),
name_fi = c("Luotettava", "Neutraali", "Ep\u00e4luotettava"),
name_sv = c("P\u00e5litlig", "Neutral", "Opu00e5litliga")
name_sv = c("P\u00e5litlig", "Neutral", "Op\u00e5litliga")
)

reliability <- structure(reliability, row.names = r, class = "data.frame")
Expand Down

0 comments on commit caa7c8a

Please sign in to comment.