Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
seabbs committed Dec 20, 2024
1 parent 5f51a5d commit 36bf53e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion R/opts.R
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,10 @@ obs_opts <- function(family = c("negbin", "poisson"),
cli_abort(
c(
"!" = "Specifying {.var phi} as a vector of length 2 is deprecated.",
"i" = "Use a {.cls dist_spec} instead, e.g. Normal(mean = {phi[1]}, sd = {phi[2]})."
"i" = paste0(
"Use a {.cls dist_spec} instead, e.g. Normal(mean = {phi[1]}, ",
"sd = {phi[2]})."
)
)
)
}
Expand Down

0 comments on commit 36bf53e

Please sign in to comment.