Skip to content

Commit 542098f

Browse files
committed
Fix docs ArraySchema.R
1 parent b2f9eef commit 542098f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

R/ArraySchema.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ tiledb_array_schema <- function(
9595
} # make it a list so that lapply works below
9696
stopifnot(
9797
"length of 'attrs' cannot be zero" = length(attrs) > 0,
98-
"'attrs' must be a list of one or tiled_attr objects" = all(vapply(attrs, is_attr, logical(1)))
98+
"'attrs' must be a list of one or tiledb_attr objects" = all(vapply(attrs, is_attr, logical(1)))
9999
)
100100
} else {
101101
attrs <- NULL

0 commit comments

Comments
 (0)