Skip to content

Commit 5db2912

Browse files
authored
Fixed grammatical errors in README.md (#492)
1 parent e0983d2 commit 5db2912

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Why PyDataStructs?
1515

1616
- **Single package for all your data structures and algorithms**
1717

18-
- **Consistent and Clean Interface** - The APIs we have provided are consistent with each other, clean and easy to use. We make sure of that before adding any new data structure or algorithm.
18+
- **Consistent and Clean Interface** - The APIs we have provided are consistent with each other, clean, and easy to use. We make sure of that before adding any new data structure or algorithm.
1919

2020
- **Well Tested** - We thoroughly test our code before making any new addition to PyDataStructs. 99 percent lines of our code have already been tested by us.
2121

@@ -104,7 +104,7 @@ We recommend you to join our [discord channel](https://discord.gg/PwY7wQDG5G) fo
104104
Please follow the rules and guidelines given below,
105105

106106
1. Follow the [numpydoc docstring guide](https://numpydoc.readthedocs.io/en/latest/format.html).
107-
2. If you are planning to contribute a new data structure then first raise an **issue** for discussing the API, rather than directly making a PR. Please go through [Plan of Action for Adding New Data Structures](https://github.com/codezonediitj/pydatastructs/wiki/Plan-of-Action-for-Adding-New-Data-Structures)
107+
2. If you are planning to contribute a new data structure then first raise an **issue** for discussing the API, rather than directly making a PR. Please go through [Plan of Action for Adding New Data Structures](https://github.com/codezonediitj/pydatastructs/wiki/Plan-of-Action-for-Adding-New-Data-Structures).
108108
3. For the first-time contributors we recommend not to take a complex data structure, rather start with `beginner` or `easy`.
109109
4. We don't assign issues to any individual. Instead, we follow First Come First Serve for taking over issues, i.e., if one contributor has already shown interest then no comment should be made after that as it won't be considered. Anyone willing to work on an issue can comment on the thread that he/she is working on and raise a PR for the same.
110110
5. Any open PR must be provided with some updates after being reviewed. If it is stalled for more than 4 days, it will be labeled as `Please take over`, meaning that anyone willing to continue that PR can start working on it.
@@ -114,7 +114,7 @@ The following parameters are to be followed to pass the code quality tests for y
114114

115115
1. There should not be any trailing white spaces at any line of code.
116116
2. Each `.py` file should end with exactly one new line.
117-
3. Comparisons involving `True`, `False` and `None` should be done by
117+
3. Comparisons involving `True`, `False`, and `None` should be done by
118118
reference (using `is`, `is not`) and not by value(`==`, `!=`).
119119

120120
Keep contributing!!

0 commit comments

Comments
 (0)