Skip to content

Commit

Permalink
Remove extra "and"
Browse files Browse the repository at this point in the history
  • Loading branch information
jennybc committed Aug 29, 2024
1 parent df950be commit 8330878
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vignettes/wrappers.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ That's because the innermost call to `glue()` is looking in these places, in thi
1. The ephemeral execution environment of our glue wrapper, `myglue1()`. Here `NAME` has the value "myglue_execution_env" there and that explains part of our result.
2. The environment where `myglue1()` is defined, which is the global environment. `BODY` has the value "global_env" there and that explains the rest of our result.

Note that the execution environment of `fn_builder1()`, which holds the and `NAME` and `BODY` specified by the user, is not consulted at all.
Note that the execution environment of `fn_builder1()`, which holds the `NAME` and `BODY` specified by the user, is not consulted at all.
This is obviously very bad.

## A wrapper that works
Expand Down

0 comments on commit 8330878

Please sign in to comment.