Skip to content

Commit 30de1de

Browse files
author
hornik
committed
Cosmetics.
git-svn-id: https://svn.r-project.org/R/trunk@87302 00db46b3-68df-0310-9c12-caf00c1e9a41
1 parent c64f0ef commit 30de1de

File tree

1 file changed

+10
-10
lines changed
  • src/library/tools/R

1 file changed

+10
-10
lines changed

src/library/tools/R/QC.R

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4969,16 +4969,16 @@ function(x, ...)
49694969

49704970
c(character(),
49714971
if((n <- x$latin1) && !suppress_notes) {
4972-
sprintf(
4973-
ngettext(n,
4974-
"Note: found %d marked Latin-1 string",
4975-
"Note: found %d marked Latin-1 strings"), n)
4972+
sprintf(ngettext(n,
4973+
"Note: found %d marked Latin-1 string",
4974+
"Note: found %d marked Latin-1 strings"),
4975+
n)
49764976
},
49774977
if((n <- x$utf8) && !suppress_notes) {
4978-
sprintf(
4979-
ngettext(n,
4978+
sprintf(ngettext(n,
49804979
"Note: found %d marked UTF-8 string",
4981-
"Note: found %d marked UTF-8 strings"), n)
4980+
"Note: found %d marked UTF-8 strings"),
4981+
n)
49824982
},
49834983
## if(n <- x$bytes) { ## elevated to a Warning in 4.5.0
49844984
## sprintf(
@@ -4987,10 +4987,10 @@ function(x, ...)
49874987
## "Warning: found %d strings marked as \"bytes\""), n)
49884988
## },
49894989
if((n <- x$bytes) && !suppress_notes) {
4990-
sprintf(
4991-
ngettext(n,
4990+
sprintf(ngettext(n,
49924991
"Note: found %d string marked as \"bytes\"",
4993-
"Note: found %d strings marked as \"bytes\""), n)
4992+
"Note: found %d strings marked as \"bytes\""),
4993+
n)
49944994
},
49954995
if(nr <- nrow(x$unknown)) {
49964996
msg <- ngettext(nr,

0 commit comments

Comments
 (0)