Skip to content

Commit 67c7906

Browse files
VIGNETTE: typos
1 parent 09f6cd2 commit 67c7906

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: future
2-
Version: 1.33.1-9008
2+
Version: 1.33.1-9009
33
Title: Unified Parallel and Distributed Processing in R for Everyone
44
Imports:
55
digest,

vignettes/future-4-non-exportable-objects.md.rsp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -736,15 +736,15 @@ train <- xgb.DMatrix(agaricus.train$data, label = agaricus.train$label)
736736
class(train)
737737
## [1] "xgb.DMatrix"
738738

739-
d <- dim(dtrain)
739+
d <- dim(train)
740740
d
741741
## [1] 6513 126
742742
```
743743

744744
works just fine but if we attempt to pass on the 'xgb.DMatrix' object `train` to an external worker, we silently get a incorrect value:
745745

746746
```r
747-
f <- future(dim(dtrain))
747+
f <- future(dim(train))
748748
d <- value(f)
749749
d
750750
## NULL

0 commit comments

Comments
 (0)