Skip to content

Commit 4fdfb37

Browse files
drepramRishabhJain2018
authored andcommitted
Docs: Fix Github name(Cloud-CV#117)
1 parent 0d94a96 commit 4fdfb37

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

.github/CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Our central development branch is master. Coding is done on feature branches bas
5151
5252
5353
3. Once the code is pushed, create a pull request:
54-
- On your Github fork, select your branch and click “New pull request”. Select “master” as the base branch and your branch in the “compare” dropdown.
54+
- On your GitHub fork, select your branch and click “New pull request”. Select “master” as the base branch and your branch in the “compare” dropdown.
5555
If the code is mergeable (you get a message saying “Able to merge”), go ahead and create the pull request.
5656
- Check back after some time to see if the Travis checks have passed, if not you should click on “Details” link on your PR thread at the right of “The Travis CI build failed”, which will take you to the dashboard for your PR. You will see what failed / stalled, and will need to resolve them.
5757
- If your checks have passed, your PR will be assigned a reviewer who will review your code and provide comments. Please address each review comment by pushing new commits to the same branch (the PR will automatically update, so you don’t need to submit a new one). Once you are done, comment below each review comment marking it as “Done”. Feel free to use the thread to have a discussion about comments that you don’t understand completely or don’t agree with.

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ IMPORTANT NOTES (please read, then delete):
22

33
* The PR title should start with "Fix #bugnum: " (if applicable), followed by a clear one-line present-tense summary of the changes introduced in the PR. For example: "Fix #bugnum: Introduce the first version of the collection editor.".
44

5-
* Please make sure to mention "#bugnum" somewhere in the description of the PR. This enables Github to link the PR to the corresponding bug.
5+
* Please make sure to mention "#bugnum" somewhere in the description of the PR. This enables GitHub to link the PR to the corresponding bug.

frontend/src/components/home/homeBody/HomeShowcase.js

+2-6
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,8 @@ class HomeShowcase extends React.Component {
4242
<img src={project.image} />
4343
</div>
4444
<div className="cv-home-showcase-links">
45-
<Link
46-
to={project.github_url}
47-
target="_blank"
48-
rel="noopener noreferrer"
49-
>
50-
<Button extraClass="cv-button-small">Github</Button>
45+
<Link to={project.github_url} target="_blank">
46+
<Button extraClass="cv-button-small">GitHub</Button>
5147
</Link>
5248
<Link
5349
to={project.documentation_url}

0 commit comments

Comments
 (0)