Skip to content

Commit f26e48e

Browse files
committed
Flip order
1 parent 75fa45e commit f26e48e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/mutate.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ mutate.data.frame <- function(.data,
222222
}
223223

224224
out <- dplyr_col_select(out, cols_retain)
225-
attr(out, "pillar_focus") <- intersect(cols_retain, c(cols_expr, cols_used))
225+
attr(out, "pillar_focus") <- intersect(c(cols_expr, cols_used), cols_retain)
226226
out
227227
}
228228

0 commit comments

Comments
 (0)