Skip to content

Commit

Permalink
Fix usethis option example for .Rprofile. (#1095)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lenostatos authored Feb 25, 2025
1 parent d6e3d3f commit 22ac359
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions setup.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,15 @@ Here's an example of a code snippet that could go in `.Rprofile`:

```{r, eval = FALSE}
options(
"Authors@R" = utils::person(
"Jane", "Doe",
email = "[email protected]",
role = c("aut", "cre"),
comment = c(ORCID = "0000-1111-2222-3333")
),
License = "MIT + file LICENSE"
usethis.description = list(
"Authors@R" = utils::person(
"Jane", "Doe",
email = "[email protected]",
role = c("aut", "cre"),
comment = c(ORCID = "0000-1111-2222-3333")
),
License = "MIT + file LICENSE"
)
)
```

Expand Down

0 comments on commit 22ac359

Please sign in to comment.