Skip to content

Commit

Permalink
Update post merge
Browse files Browse the repository at this point in the history
  • Loading branch information
hadley committed Jan 17, 2024
1 parent a761f59 commit 3c8a647
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/tidyeval.R
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ partial_eval_call <- function(call, data, env) {
eval_bare(call[[2]], env)
} else if (is_call(call, "remote")) {
call[[2]]
} else if (name == "$") {
} else if (is_call(call, "$")) {
# Only the 1st argument is evaluated
call[[2]] <- partial_eval(call[[2]], data = data, env = env)
call
Expand Down

0 comments on commit 3c8a647

Please sign in to comment.