Skip to content

Commit 9524643

Browse files
committed
Address line length lint
1 parent b0e207c commit 9524643

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

R/outliers.R

+2-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,8 @@ detect_outlr_stl <- function(x = seq_along(y), y,
282282
}
283283
distinct_x_skips <- unique(diff(x))
284284
if (diff(range(distinct_x_skips)) > 1e-4 * mean(distinct_x_skips)) {
285-
cli_abort("`x` does not appear to have regular spacing; consider filling in gaps with imputed values (STL does not allow NAs).")
285+
cli_abort("`x` does not appear to have regular spacing; consider filling in
286+
gaps with imputed values (STL does not allow NAs).")
286287
}
287288
if (is.unsorted(x)) { # <- for performance in common (sorted) case
288289
o <- order(x)

0 commit comments

Comments
 (0)