13.1.1 remove extra space (#1554)

This commit is contained in:
Steven Primeaux 2023-08-02 14:51:04 -05:00 committed by GitHub
parent 43ebb36c5d
commit 187edbd55e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ Just remember that any manipulation we do to a free-floating vector, you can do
```{r}
df <- tibble(x)
df |>
mutate(y = x * 2)
mutate(y = x * 2)
```
## Comparisons