diff --git a/Expressions.Rmd b/Expressions.Rmd index 38f03011b..6e44c0a00 100644 --- a/Expressions.Rmd +++ b/Expressions.Rmd @@ -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"