Tweak acknowledgements

This commit is contained in:
Hadley Wickham 2020-10-06 07:09:16 -05:00
parent 530cfe4b66
commit ae632438d9
1 changed files with 1 additions and 3 deletions

View File

@ -24,8 +24,6 @@ Please note that R4DS uses a [Contributor Code of Conduct](https://contributor-c
R4DS is hosted on <https://www.netlify.com>.
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 = ", "))
```