Skip to content

Commit 434395f

Browse files
authored
Merge pull request #759 from ryanzomorrodi/patch-1
Fix typo in read_stars along error
2 parents 126da2f + 2fcb8fc commit 434395f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/stars.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -625,7 +625,7 @@ c.stars = function(..., along = NA_integer_, try_hard = FALSE, nms = names(list(
625625
} else {
626626
if (is.list(along)) { # custom ordering of ... over dimension(s) with values specified
627627
if (prod(lengths(along)) != length(dots))
628-
stop("number of objects does not match the product of lenghts of the along argument", call. = FALSE)
628+
stop("number of objects does not match the product of lengths of the along argument", call. = FALSE)
629629
# abind all:
630630
d = st_dimensions(dots[[1]])
631631
ret = mapply(abind, ..., along = length(d) + 1, SIMPLIFY = FALSE)

0 commit comments

Comments
 (0)