Skip to content

Commit dc43638

Browse files
Superfluous ')'
1 parent 1175df7 commit dc43638

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

po/data.table.pot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ msgstr ""
330330
msgid ""
331331
"RHS for item %d has been duplicated because MAYBE_REFERENCED==%d "
332332
"MAYBE_SHARED==%d, but then is being plonked. length(values)==%d; "
333-
"length(cols)==%d)\n"
333+
"length(cols)==%d\n"
334334
msgstr ""
335335

336336
#: assign.c:569

src/assign.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ SEXP assign(SEXP dt, SEXP rows, SEXP cols, SEXP newcolnames, SEXP values)
561561
(TYPEOF(values)!=VECSXP && i>0) // assigning the same values to a second column. Have to ensure a copy #2540
562562
) {
563563
if (verbose) {
564-
Rprintf(_("RHS for item %d has been duplicated because MAYBE_REFERENCED==%d MAYBE_SHARED==%d, but then is being plonked. length(values)==%d; length(cols)==%d)\n"),
564+
Rprintf(_("RHS for item %d has been duplicated because MAYBE_REFERENCED==%d MAYBE_SHARED==%d, but then is being plonked. length(values)==%d; length(cols)==%d\n"),
565565
i+1, MAYBE_REFERENCED(thisvalue), MAYBE_SHARED(thisvalue), length(values), length(cols));
566566
}
567567
thisvalue = copyAsPlain(thisvalue); // PROTECT not needed as assigned as element to protected list below.

0 commit comments

Comments
 (0)