From 1d7fef794aa3c7bfa3e4702ccbc9257921591bfb Mon Sep 17 00:00:00 2001 From: Gleb Ebert <5892266+gl-eb@users.noreply.github.com> Date: Fri, 20 Jan 2023 14:55:08 +0100 Subject: [PATCH] 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` --- iteration.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iteration.qmd b/iteration.qmd index 5f4e0ad..fe948ce 100644 --- a/iteration.qmd +++ b/iteration.qmd @@ -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}