Skip to content

Commit 5e55e88

Browse files
committed
fix warning
1 parent d3fb50e commit 5e55e88

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

R/pivot_quantiles.R

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,11 @@ pivot_quantiles_wider <- function(.data, ...) {
143143
}
144144

145145
pivot_quantiles <- function(.data, ...) {
146-
deprecate_stop("0.0.6", "pivot_quantiles()", "pivot_quantiles_wider()")
146+
msg <- c(
147+
"{.fn pivot_quantiles} was deprecated in {.pkg epipredict} 0.0.6",
148+
i = "Please use {.fn pivot_quantiles_wider} instead."
149+
)
150+
deprecate_stop(msg)
147151
}
148152

149153
validate_pivot_quantiles <- function(.data, ...) {

0 commit comments

Comments
 (0)