missing "who" in thank you sentence (#722)

This commit is contained in:
Stéphane Guillou 2018-10-25 03:21:50 +10:00 committed by Hadley Wickham
parent 39d22b750c
commit 63716ebed9
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ contributors <- contributors %>%
desc = ifelse(is.na(name), link, glue::glue("{name} ({link})"))
)
cat("A big thanks goes to everyone has contributed!\n")
cat("A big thanks goes to everyone who has contributed!\n")
cat(paste0(contributors$desc, collapse = ", "))
```