Skip to content

Commit 9922a74

Browse files
committed
Fix dep=T in devtools::install_deps instruction
`deps = T` changed to `dep = T`, fixing "unused argument" error. The full parameter name with the default value is `dependencies = NA`, according to the documentation.
1 parent 188c8e0 commit 9922a74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vignettes/development.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ devtools::install_github("klutometis/roxygen")
7070
Next, install all the suggested packages that ggplot2 needs. To do this either open the ggplot2 rstudio project, or set your working directory to the ggplot2 directory, then run:
7171

7272
```{r, eval = FALSE}
73-
install_deps(deps = T)
73+
install_deps(dep = T)
7474
```
7575

7676
The key functions you'll use when working on ggplot2:

0 commit comments

Comments
 (0)