From ae632438d94d273a51463679162309632fff5c70 Mon Sep 17 00:00:00 2001 From: Hadley Wickham Date: Tue, 6 Oct 2020 07:09:16 -0500 Subject: [PATCH] Tweak acknowledgements --- index.rmd | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/index.rmd b/index.rmd index 9e6482f..7920bdc 100644 --- a/index.rmd +++ b/index.rmd @@ -24,8 +24,6 @@ Please note that R4DS uses a [Contributor Code of Conduct](https://contributor-c R4DS is hosted on . -R4DS is a collaborative effort and many people have contributed fixes and improvements via pull request: - ```{r, results = "asis", echo = FALSE, message = FALSE} library(dplyr) contributors <- readr::read_csv("contributors.csv", col_types = list()) @@ -35,7 +33,7 @@ contributors <- contributors %>% desc = ifelse(is.na(name), link, glue::glue("{name} ({link})")) ) -cat("A big thanks goes to everyone who has contributed!\n") +cat("R4DS is a collaborative effort and many people have contributed fixes and improvements via pull request: ") cat(paste0(contributors$desc, collapse = ", ")) ```