Skip to content

Commit 35e4a1d

Browse files
committed
missing a
1 parent 9710377 commit 35e4a1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vignettes/datatable-programming.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ In case of any doubts on the `env` interface functioning, set `verbose = TRUE` t
391391

392392
### Use `env` argument from inside another function
393393

394-
It was a design decision that `env` argument will follow _Standard Evaluation_ rules. Therefore values passed to `env` are evaluated in their orignal scope as is. For more info on the topic see [R Language manual: Computing on the language](https://cran.r-project.org/doc/manuals/r-release/R-lang.html#Computing-on-the-language)). As a result, **using `env` argument from function does not require any special handling**. It also means that `.()` alias for a `list()` will not work: `env = .(.col="Petal.Length")`; and `env = list(.col="Petal.Length")` must be used.
394+
It was a design decision that `env` argument will follow _Standard Evaluation_ rules. Therefore values passed to `env` are evaluated in their orignal scope as is. For more info on the topic see [R Language manual: Computing on the language](https://cran.r-project.org/doc/manuals/r-release/R-lang.html#Computing-on-the-language)). As a result, **using `env` argument from a function does not require any special handling**. It also means that `.()` alias for a `list()` will not work: `env = .(.col="Petal.Length")`; and `env = list(.col="Petal.Length")` must be used.
395395

396396
```{r env_se}
397397
fun = function(x, col.mean) {

0 commit comments

Comments
 (0)