Skip to content

Commit dd96274

Browse files
committed
Rewording for clarity
1 parent b2c4e49 commit dd96274

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

CONTRIBUTING.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
# How to contribute
22

3-
First off, thank you for taking the time to contribute! If you have a functionality that you would like to see in codon, we have a few guidelines about how to make sure your code is in line with our standards so we can merge your pull request quicker.
3+
First off, thank you for taking the time to contribute! If you have a functionality that you would like to see in codon, we have a few standards and guidelines so we can merge your pull request quicker.
44

55
## Basic idea
66

77
1. [Fork](https://help.github.com/en/articles/fork-a-repo) codonPython on GitHub.
88

9-
2. Create your documented function and tests (:heart_eyes:) on a new branch on that fork, with code in line with our *coding conventions*.
9+
2. Write your documented function and tests (:heart_eyes:) on a new branch, coding in line with our **coding conventions**.
1010

11-
3. Submit a [GitHub Pull Request to codonPython](https://github.com/codonlibrary/codonPython/pull/new/master) with a clear description of what you have done.
11+
3. Submit a [GitHub Pull Request](https://github.com/codonlibrary/codonPython/pull/new/master) to codonPython with a clear description of what you have done.
1212

13-
We suggest you make sure all of your commits are atomic (one feature per commit). Please make sure that non-obvious lines of code are commented, and variable names are as clear as possible. Please do not send us undocumented code as we might not accept it. Including tests to your pull request will bring tears of joy to our eyes, and will also probably result in a faster merge.
13+
We suggest you make sure all of your commits are atomic (one feature per commit). Please make sure that non-obvious lines of code are commented, and variable names are as clear as possible. Please do not send us undocumented code as we will not accept it. Including tests to your pull request will bring tears of joy to our eyes, and will also probably result in a faster merge.
1414

1515
## Coding conventions
1616

17-
Start reading our code and you will get an idea of it:
17+
Start reading our code to get a feel for it:
1818

19-
* We use [PEP8](https://www.python.org/dev/peps/pep-0008/). Autoformatters for PEP8, for instance [autopep8](https://pypi.org/project/autopep8/) can ensure compliance easily.
19+
* We use [PEP8](https://www.python.org/dev/peps/pep-0008/). Autoformatters for PEP8, for instance [autopep8](https://pypi.org/project/autopep8/), can easily ensure compliance.
2020
* We use docstrings and we try to (loosely) follow [`numpy`'s docstring standards](https://numpydoc.readthedocs.io/en/latest/format.html#docstring-standard).
2121
* This is open source software. Consider the people who will read your code, and make it look nice for them.
2222

0 commit comments

Comments
 (0)