Skip to content

Commit 500b61e

Browse files
Merge pull request #14 from annu12340/patch-1
Corrected a few typos
2 parents 7a4ed8f + c77d1e7 commit 500b61e

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

donut-docs/donut-documentation/donut-frontend/contributing-to-donut-frontend.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22

33
**Choosing an issue**
44

5-
The first step when contributing to donut-frontend is to visit the project site and find an issue you would like to work on and which you think is suitable for your skill set. From the project homepage on GitHub you can click the Issues tab to navigate to a list of the open issues.
5+
The first step when contributing to donut-frontend is to visit the project site and find an issue you would like to work on and which you think is suitable for your skillset. From the project homepage on GitHub, you can click the Issues tab to navigate to a list of the open issues.
66

77

88
![enter image description here](https://i.imgur.com/ncLCy84.jpg)
9-
After chosing an issue from the issues tab click on that particular issue to view more details about it. The issue details page provides the full information about the issue. Usually the top comment will include details of the bug or the feature that is needed. Issues can be raised by anyone and as a result, the level of detail may not always be sufficient to understand the problem or requirement. On allReady, the project owners and core contributors try to view new issues and triage them. This involves verifying the issue being reported is valid and where necessary, providing some further details or guidance. If it’s not clear what is needed from an issue, you can leave a comment to ask questions about it. If you have an idea for a solution, but want to run it past the project team before starting, work, you can leave a comment for that too. Issues are a good place for open discussions like this.
9+
10+
After choosing an issue from the issues tab, click on that particular issue to view more details about it. The issue details page provides the full information about the issue. Usually, the top comment will include details of the bug or the feature that is needed. Issues can be raised by anyone and as a result, the level of detail may not always be sufficient to understand the problem or requirement. The project owners and core contributors try to view new issues and triage them. This involves verifying the issue being reported is valid and where necessary, providing some further details or guidance. If it’s not clear what is needed from an issue, you can leave a comment to ask questions about it. If you have an idea for a solution, but want to run it past the project team before starting, work, you can leave a comment for that too. Issues are a good place for open discussions like this.
1011

1112

1213
**Working on an issue**
@@ -17,45 +18,44 @@ When beginning work on an issue locally, the first thing you’ll need to do is
1718
git checkout -b <branchname>
1819
```
1920

20-
This command allows us to specify a name for our new branch and immediately check it out so we can work on it. It's common to name the branch with the issue number. For exmaple if we are working on the issue #223 it would be a good idea to name the branch,
21+
This command allows us to specify a name for our new branch and immediately check it out so we can work on it. It's common to name the branch with the issue number. For example if we are working on the issue #223, it would be a good idea to name the branch,
2122

2223

2324
```
2425
git checkout -b 223
2526
```
2627

27-
Once we are on our new branch we can make changes to the code which address the issue. When we have made the required changes that address a particular issue, we need to commit that code to our branch. We can use the “git status” command to view the changes since our last commit.
28+
Once we are on our new branch we can make changes to the code which addresses the issue. When we have made the required changes that address a particular issue, we need to commit that code to our branch. We can use the “git status” command to view the changes since our last commit.
2829

2930
```
3031
git status
3132
```
3233

33-
34-
We then use the “git add” command to stage the changes for the next commit. It's possible to add the files one by one by spcifying their relative path afterwards. For example if we want to add the corrections.js file in the same directory,
34+
We then use the “git add” command to stage the changes for the next commit. It's possible to add the files one by one by specifying their relative path afterward. For example, if we want to add the corrections.js file in the same directory,
3535

3636
```
3737
git add corrections.js
3838
```
3939

40-
However if you want to stage all the files that have been changed, it's also possible with the follwing command.
40+
However, if you want to stage all the files that have been changed, it's also possible with the following command.
4141
```
42-
git add .
42+
git add *
4343
```
44-
Next we will commit our staged changes using the “git commit” command. In this case we can use the following example:
44+
Next, we will commit our staged changes using the “git commit” command. In this case we can use the following example:
4545
```
4646
git commit -m "Fix readme typo"
4747
```
4848

4949
The -m option allows us to specify a message for our commit. It’s good practice to try and provide a succinct, but descriptive message for your commits. This helps a reviewer understand at a high level what was addressed in each commit.
5050

51-
At this point we have made and committed out changes local to our development machine. Our final step is to push the changes to our fork of the allReady repository up on GitHub. We can do that using the “git push” command. We need to specify the name of the remote that we want to push to and the name of the branch we want to push up.
51+
At this point, we have made and committed out changes local to our development machine. Our final step is to push the changes to our fork of the master repository up on GitHub. We can do that using the “git push” command. We need to specify the name of the remote that we want to push to and the name of the branch we want to push up.
5252
```
5353
git push origin 223
5454
```
5555

56-
Now the changes we have made are pushed into our fork in GitHub. The final step is to make a pull request . A **pull request** (PR) is a method of submitting contributions to an open development project. It occurs when a developer asks for changes committed to an external repository to be considered for inclusion in a project's main repository after the peer review.
56+
Now the changes we have made are pushed into our fork in GitHub. The final step is to make a pull request. A **pull request** (PR) is a method of submitting contributions to an open development project. It occurs when a developer asks for changes committed to an external repository to be considered for inclusion in a project's main repository after the peer review.
5757

58-
In order to make a pull request, visit the forked repository on github. On the top right hand side a button will now be there mentioning that a pull request is ready to be made.
58+
In order to make a pull request, visit the forked repository on GitHub. On the top right hand side a button will now be there mentioning that a pull request is ready to be made.
5959

6060
![enter image description here](https://i.imgur.com/bTN9On5.jpg)
61-
Click on the "compare and pull request" button to make the pul request!
61+
Click on the "compare and pull request" button to make the pul request!

0 commit comments

Comments
 (0)