Update old function name (#1233)

The function `append_csv()` is nowhere to be found the rest of the book. I assume from the context that `append_csv` is an earlier name of what is now `append_file`
This commit is contained in:
Gleb Ebert 2023-01-20 14:55:08 +01:00 committed by GitHub
parent 2b5b238b5d
commit 1d7fef794a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -881,7 +881,7 @@ append_file <- function(path) {
}
```
Now we need to call `append_csv()` once for each element of `paths`.
Now we need to call `append_file()` once for each element of `paths`.
That's certainly possible with `map()`:
```{r}