From 23b9caa7aef5e2691197e20f03f5f83f53e6480b Mon Sep 17 00:00:00 2001 From: Hadley Wickham Date: Mon, 7 Nov 2022 08:38:08 -0600 Subject: [PATCH] Fix typo Fixes #1120 --- base-R.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base-R.qmd b/base-R.qmd index 63ccee2..63eaf58 100644 --- a/base-R.qmd +++ b/base-R.qmd @@ -485,7 +485,7 @@ Then instead of iterating over the elements of `paths`, we'll iterate over their seq_along(paths) ``` -Using the indices is important because it allows us to link to each each position in the input with the corresponding position in the output: +Using the indices is important because it allows us to link to each position in the input with the corresponding position in the output: ```{r} for (i in seq_along(paths)) {