Skip to content

Commit 4f7b876

Browse files
committed
Fix docs in ArraySchema.R
1 parent dc93369 commit 4f7b876

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

R/ArraySchema.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MIT License
22
#
3-
# Copyright (c) 2017-2024 TileDB Inc.
3+
# Copyright (c) 2017-2025 TileDB Inc.
44
#
55
# Permission is hereby granted, free of charge, to any person obtaining a copy
66
# of this software and associated documentation files (the "Software"), to deal
@@ -60,7 +60,7 @@ tiledb_array_schema.from_ptr <- function(ptr, arrptr = NULL) {
6060
#' ctx <- tiledb_ctx(limitTileDBCores())
6161
#' }
6262
#' schema <- tiledb_array_schema(
63-
#' dom = tiledb_domain(
63+
#' domain = tiledb_domain(
6464
#' dims = c(
6565
#' tiledb_dim("rows", c(1L, 4L), 4L, "INT32"),
6666
#' tiledb_dim("cols", c(1L, 4L), 4L, "INT32")
@@ -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 'tiledb_attr' objects" = all(vapply(attrs, is_attr, logical(1)))
9999
)
100100
} else {
101101
attrs <- NULL

man/tiledb_array_schema.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)