From eca6b0c8d591a4f81c1e9e3dc2dddfc4fbf2ac57 Mon Sep 17 00:00:00 2001 From: czgdp1807 Date: Wed, 30 Oct 2019 21:07:13 +0530 Subject: [PATCH] updated readme --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8e2fcd6d9..11495abb7 100644 --- a/README.md +++ b/README.md @@ -6,12 +6,12 @@ PyDataStructs Who are we? ----------- -We are a group of people passionate about data structures and algorithms. We eye for implementing all the data structures given [here](https://en.wikipedia.org/wiki/List_of_data_structures). We aim for distributing the package among enthusiastic programmers so that they don't have to implement complex data structures in their day to day tasks. +We are a group of people passionate about data structures and algorithms. We eye for implementing all the data structures given [here](https://en.wikipedia.org/wiki/List_of_data_structures). How are we different? --------------------- -There are many pre-exisiting packages available in the open source world for the said task. However, we plan to implement those data structures which are used by both sports programmers as well as the developers. Currently, to the best of our knowledge, no such dedicated attempt has been made. In fact, we will keep each data strucutres independent from other for easy code reusability. +There are many pre-exisiting packages available in the open source world based on the above idea. However, they lack the implementation of complex data structures and this makes us different. If you have worked with C++ and Python then you know how hard it is to code bug free AVL trees :-).Well, after this project you will not have to worry about it. In fact, we will keep each data structure independent from each other for easy code reusability. How to contribute? ------------------ @@ -24,13 +24,13 @@ Follow the steps given below, 4. Execute, `git remote add origin_user https://github.com//pydatastructs/` 5. Execute, `git checkout -b `. 6. Make changes to the code. -7. Add your name and email to the AUTHORS. +7. Add your name and email to the AUTHORS, if you wish to. 8. Execute, `git add .`. 9. Execute, `git commit -m "your-commit-message"`. 10. Execute, `git push origin_user `. 11. Make a PR. -That's it, 10 easy steps for your first contribution. For future contributionsm just follow steps 5 to 10. Make sure that before starting work, always checkout to master and pull the recent changes using the remote `origin` and then start following steps 5 to 10. +That's it, 10 easy steps for your first contribution. For future contributions just follow steps 5 to 10. Make sure that before starting work, always checkout to master and pull the recent changes using the remote `origin` and then start following steps 5 to 10. See you soon with your first PR. @@ -43,6 +43,6 @@ Please follow the rules and guidelines given below, 1. Follow the [numpydoc docstring guide](https://numpydoc.readthedocs.io/en/latest/format.html). 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. -3. For the first-time contributors we recommend not to take complex data strucutre, rather start with `linear data structures` or `abstract data types`. You can also with issues labelled as `good_first_issues`. +3. For the first-time contributors we recommend not to take a complex data strucutre, rather start with `linear data structures` or `abstract data types`. You can also pick issues labelled as `good_first_issues`. Keep contributing!!