Skip to content

Commit 3c571b1

Browse files
committed
fix misplaced parenthesis
1 parent c700dc8 commit 3c571b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/scale-continuous.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,6 @@ scale_override_call <- function(call = NULL) {
205205
if (is.null(call) || is.function(call[[1]])) {
206206
return(TRUE)
207207
}
208-
!any(startsWith(as.character(call[[1]])), "scale_")
208+
!any(startsWith(as.character(call[[1]]), "scale_"))
209209
}
210210

0 commit comments

Comments
 (0)