Skip to content

Commit

Permalink
docs: remove :temp: in place of :memory:
Browse files Browse the repository at this point in the history
  • Loading branch information
Ed2uiz committed Feb 7, 2024
1 parent 8b22d2a commit 5097b75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vignettes/arithmetic.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Let's create a `dbSparseMatrix` object from the above `dgc` object.
```{r}
# Note: by default the constructor creates a dbMatrix object in-memory
dbsm <- createDBMatrix(value = dgc,
db_path = ":temp:",
db_path = ":memory:",
name = 'visium',
class = "dbSparseMatrix",
overwrite = TRUE)
Expand Down
2 changes: 1 addition & 1 deletion vignettes/operations.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ dplyr::glimpse(dgc)
```{r}
# create dbSparseMatrix from the same dgc
sparse = createDBMatrix(value = dgc,
db_path = ":temp:",
db_path = ":memory:",
name = "sparse",
class = "dbSparseMatrix",
overwrite = TRUE)
Expand Down

0 comments on commit 5097b75

Please sign in to comment.