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 = ", ")) ```