You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ Why PyDataStructs?
15
15
16
16
-**Single package for all your data structures and algorithms**
17
17
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.
19
19
20
20
-**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.
21
21
@@ -104,7 +104,7 @@ We recommend you to join our [discord channel](https://discord.gg/PwY7wQDG5G) fo
104
104
Please follow the rules and guidelines given below,
105
105
106
106
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).
108
108
3. For the first-time contributors we recommend not to take a complex data structure, rather start with `beginner` or `easy`.
109
109
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.
110
110
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
114
114
115
115
1. There should not be any trailing white spaces at any line of code.
116
116
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
118
118
reference (using `is`, `is not`) and not by value(`==`, `!=`).
0 commit comments