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

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}