Skip to content

Commit dc0baf4

Browse files
committed
include additional references, reformulate
1 parent 5e77749 commit dc0baf4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ $ git merge upstream/master
7979
```
8080

8181
5. **Develop** your code changes. A helpful resource for package development in R
82-
is Hadley Wickham's [R Packages](https://r-pkgs.org/preface.html).
82+
is Hadley Wickham's [R Packages](https://r-pkgs.org/preface.html) and [rOpenSci Packages](https://devguide.ropensci.org/).
8383
The changes can be added and pushed via
8484
```bash
8585
$ git add your_new_file your_modified_file
@@ -99,12 +99,12 @@ When opening the PR you will be guided with a checklist.
9999

100100
- [x] **References** to related issues or PRs are added.
101101

102-
- [x] The code passes `R CMD check` and **all (unit) tests**
102+
- [x] The code passes `R CMD check` and **all (unit) tests**.
103103
To check your code for common problems, run
104104
```R
105105
devtools::check()
106106
```
107-
In case you only want to run the tests, run
107+
By default, this runs all tests. In case you only want to run the tests, run
108108
```R
109109
devtools::test()
110110
```

0 commit comments

Comments
 (0)