Skip to content

Commit e56be51

Browse files
author
ripley
committed
tweaks
git-svn-id: https://svn.r-project.org/R/trunk@87392 00db46b3-68df-0310-9c12-caf00c1e9a41
1 parent 61b48fd commit e56be51

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

doc/NEWS.Rd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -435,9 +435,9 @@
435435
point without an exponent (taken as \code{p0}) as documented in
436436
\code{?NumericConstants} (\PR{18819}).
437437
438-
\item \code{cbind()} now works correctly when inputs include a raw
438+
\item \code{rbind()} now works correctly when inputs include a raw
439439
vector and a logical, integer or double vector: previously the
440-
includsion of latter was garbled.
440+
includsion of the latter was garbled.
441441
}
442442
}
443443
}

src/main/bind.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1368,7 +1368,7 @@ static SEXP cbind(SEXP call, SEXP args, SEXPTYPE mode, SEXP rho,
13681368
R_xlen_t idx = (!isMatrix(u)) ? rows : k;
13691369
if (idx > 0 && TYPEOF(u) <= INTSXP) {
13701370
/* NILSXP or INT or LGL
1371-
/* taking INTERER(NILSXP) should segfault, and
1371+
* taking INTERER(NILSXP) should segfault, and
13721372
* sometimes does. But if cbind-ing a NULL, there
13731373
* are zero rows and u is not a matrix, so nothing to do. */
13741374
if (mode <= INTSXP) {

0 commit comments

Comments
 (0)