1
0
mirror of https://github.com/msberends/AMR.git synced 2025-07-13 05:21:50 +02:00

(v2.1.1.9240) fix sir interpretation

This commit is contained in:
2025-04-16 15:22:12 +02:00
parent ec937e8179
commit cf91e677c6
8 changed files with 37 additions and 33 deletions

View File

@ -90,7 +90,7 @@ deprecation_warning <- function(old = NULL, new = NULL, fn = NULL, extra_msg = N
ifelse(type == "dataset",
paste0("The `", old, "` ", type, " has been renamed to `", new, "`"),
ifelse(type == "argument",
paste0("The `", old, "` ", type, " in `", fn, "()` has been renamed to `", new, "`: `", fn, "(", new, " = ...)`"),
paste0("The `", old, "` ", type, " in `", fn, "()` has been replaced with `", new, "`: `", fn, "(", new, " = ...)`"),
paste0("The `", old, "` ", type, " has been replaced with `", new, "`")
)
)