Skip to content

Commit ef8f179

Browse files
author
Sven E. Templer
committed
layer.r: added missing error message spacer
1 parent c0ec377 commit ef8f179

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/layer.r

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ Layer <- proto(expr = {
159159
wrong <- lengths != 1 & lengths != n
160160
if (any(wrong)) {
161161
stop("Aesthetics must either be length one, or the same length as the data",
162-
"\nProblems:", paste(aesthetics[wrong], collapse = ", "), call. = FALSE)
162+
"\nProblems: ", paste(aesthetics[wrong], collapse = ", "), call. = FALSE)
163163
}
164164

165165
if (empty(data) && n > 0) {

0 commit comments

Comments
 (0)