Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Expressions.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ x2
is.call(x2)
```

`parse_expr()` always returns a single expression. If you have multiple expression separated by `;` or `\n`, you'll need to use `rlang::parse_exprs()`. It returns a list of expressions:
`parse_expr()` always returns a single expression. If you have multiple expressions separated by `;` or `\n`, you'll need to use `rlang::parse_exprs()`. It returns a list of expressions:

```{r}
x3 <- "a <- 1; a + 1"
Expand Down