Skip to content

Commit 7602447

Browse files
committed
use regular concatenation
1 parent 4263d12 commit 7602447

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/scale-.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1311,7 +1311,7 @@ ScaleDiscrete <- ggproto("ScaleDiscrete", Scale,
13111311
pal <- vec_set_names(pal, NULL)
13121312
limits <- pal_names
13131313
}
1314-
pal <- vec_c(pal, na_value)
1314+
pal <- c(pal, na_value)
13151315
pal_match <-
13161316
vec_slice(pal, match(as.character(x), limits, nomatch = vec_size(pal)))
13171317

0 commit comments

Comments
 (0)