Skip to content

Commit 6c1c100

Browse files
committed
Fix paste0() lint
1 parent 3f698ef commit 6c1c100

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/tetraplot.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ tetraplot <- function(tcsdata, theta = 45, phi = 10, perspective = FALSE,
255255
# get 3 most in back
256256
inback <- names(sort(combdist)[seq_len(3)])
257257

258-
linback <- grepl(paste0(inback, collapse = "|"), rownames(segs))
258+
linback <- grepl(paste(inback, collapse = "|"), rownames(segs))
259259

260260
segments(
261261
segs[linback, 1, drop = FALSE],

0 commit comments

Comments
 (0)