Skip to content

Commit 6b72ae3

Browse files
fix: "Github" --> "GitHub" (carbon-design-system#3942)
Co-authored-by: Alison Joseph <alison.joseph@us.ibm.com>
1 parent 45e2935 commit 6b72ae3

File tree

10 files changed

+16
-16
lines changed

10 files changed

+16
-16
lines changed

.github/ISSUE_TEMPLATE/component-accessibility-deliverables.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ body:
66
- type: markdown
77
attributes:
88
value: |
9-
Complete the following deliverables for Carbon to review the accessibility portion of the [component contribution process](https://carbondesignsystem.com/contributing/component/). To see examples, view the component accessibility guidelines on [Github](https://github.com/carbon-design-system/carbon/wiki/Component-Accessibility-Guidelines) or on [figma](https://www.figma.com/file/PmSOwLS3ldpSQtUf4xlaLD/component-accessibility-guidelines?type=design&node-id=434-4103&mode=design&t=qQ2DqDAiNaOLPlBC-0).
9+
Complete the following deliverables for Carbon to review the accessibility portion of the [component contribution process](https://carbondesignsystem.com/contributing/component/). To see examples, view the component accessibility guidelines on [GitHub](https://github.com/carbon-design-system/carbon/wiki/Component-Accessibility-Guidelines) or on [figma](https://www.figma.com/file/PmSOwLS3ldpSQtUf4xlaLD/component-accessibility-guidelines?type=design&node-id=434-4103&mode=design&t=qQ2DqDAiNaOLPlBC-0).
1010
1111
1. Define component
1212
2. Document keyboard interactions

src/components/A11yStatus/A11yStatus.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ const A11yStatus = ({ components, layout }) => {
295295
<Link
296296
href={githubUrl}
297297
renderIcon={() => <Launch aria-label="Launch" />}>
298-
Github link
298+
GitHub link
299299
</Link>
300300
</td>
301301
</tr>

src/pages/developing/angular-tutorial/step-3.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ only render the repository link.
308308
<ng-template #linkTemplate let-data="data">
309309
<ul style="display: flex">
310310
<li>
311-
<a ibmLink [href]="data.github">Github</a>
311+
<a ibmLink [href]="data.github">GitHub</a>
312312
</li>
313313
<li *ngIf="data.homepage">
314314
<span>&nbsp;|&nbsp;</span>

src/pages/developing/frameworks/vanilla.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The vanilla JS library is maintained by members of the Carbon community. Vanilla
3232
JS is only supported in v10. Please visit our
3333
[v10 documentation](https://v10.carbondesignsystem.com/developing/frameworks/vanilla)
3434
for more info. For support,
35-
[open an issue on Github](https://github.com/carbon-design-system/carbon/issues/new/choose).
35+
[open an issue on GitHub](https://github.com/carbon-design-system/carbon/issues/new/choose).
3636

3737
</InlineNotification>
3838

src/pages/developing/react-tutorial/faq.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ tabs:
1919
### I am getting an error that says <span className='tutorial-faq-header-code'>`yarn lockfile missing`</span>. How do I fix this?
2020

2121
- This error can occur when the `yarn.lock` file is either missing or differs
22-
from the one used in the tutorial step. To fix this, you can go to the Github
22+
from the one used in the tutorial step. To fix this, you can go to the GitHub
2323
branch for the step you are on, find the `yarn.lock` file, and copy that file
2424
into your working directory. You may need to delete your `node_modules` folder
2525
and run `yarn` afterwards.

src/pages/developing/react-tutorial/step-3.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ repository information in a data table.
4040

4141
### Preview
4242

43-
The [Github REST API](https://docs.github.com/en/rest?apiVersion=2022-11-28) is
43+
The [GitHub REST API](https://docs.github.com/en/rest?apiVersion=2022-11-28) is
4444
very well documented, we'll use it to fetch Carbon-related data for this Carbon
4545
tutorial.
4646

4747
To do so, we'll be using
4848
[Octokit Core](https://github.com/octokit/core.js/#readme), a client that makes
49-
it easy to interact with Github's APIs.
49+
it easy to interact with GitHub's APIs.
5050

5151
A
5252
[preview](https://carbon-tutorial-nextjs-8xoxdcixk-carbon-design-system.vercel.app/)
@@ -100,7 +100,7 @@ You should see something similar to where the
100100

101101
## Install dependencies
102102

103-
We'll need to install `@octokit/core`, a package that allows us to query Github
103+
We'll need to install `@octokit/core`, a package that allows us to query GitHub
104104
APIs easily. Stop your development server with `CTRL-C` and install the octokit
105105
dependency with:
106106

@@ -146,13 +146,13 @@ const octokitClient = new Octokit({});
146146

147147
### API Request
148148

149-
Next, we'll assemble our Github API request to fetch a list of repositories that
150-
belong to the `carbon-design-system` Github organization. We'll do this by using
151-
a `useEffect` hook that will use octokit to query Github's API
149+
Next, we'll assemble our GitHub API request to fetch a list of repositories that
150+
belong to the `carbon-design-system` GitHub organization. We'll do this by using
151+
a `useEffect` hook that will use octokit to query GitHub's API
152152
[repositories endpoint](https://docs.github.com/en/rest/repos/repos?apiVersion=2022-11-28#list-organization-repositories).
153153

154154
Let's declare a `useEffect` hook immediately below the component definition and
155-
above the return. We'll use this to query Github's API when the component first
155+
above the return. We'll use this to query GitHub's API when the component first
156156
renders:
157157

158158
```javascript path=src/app/repos/page.js

src/pages/developing/react-tutorial/step-5.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,4 +114,4 @@ for a full description of what's happening.
114114
Next you can deploy your application to your preferred host, such as
115115
[Vercel](https://nextjs.org/learn/basics/deploying-nextjs-app/deploy),
116116
[IBM Cloud](https://www.ibm.com/cloud/free?utm_content=SRCWW&p1=Search&p4=43700074971942949&p5=e&gclid=CjwKCAjwjaWoBhAmEiwAXz8DBZSQ7ksqHmmFDCLGL-5erHPFytezo4q3fB6qJ13wkZROr3DYs95BGhoC6fUQAvD_BwE&gclsrc=aw.ds),
117-
[Github Pages](https://docs.github.com/en/pages/quickstart).
117+
[GitHub Pages](https://docs.github.com/en/pages/quickstart).

src/pages/elements/pictograms/usage.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ become an elegant addition to the IBM experience.
4747
href="https://github.com/carbon-design-system/carbon/tree/v10/packages/pictograms/src/svg"
4848
>
4949

50-
![Github Icon](../../../images/resource-cards/github.png)
50+
![GitHub Icon](../../../images/resource-cards/github.png)
5151

5252
</ResourceCard>
5353
</Column>

src/pages/guidelines/content/overview.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Further guidance can be found in the
109109
If there's something you need and cannot find, or if you need clarification
110110
about a particular use case, you can ask questions in the
111111
[Carbon Slack channel](https://ibm-studios.slack.com/messages/C0M053VPT/), open
112-
a Github issue, or connect with us in one of our
112+
a GitHub issue, or connect with us in one of our
113113
[meetups](https://www.carbondesignsystem.com/whats-happening/meetups).
114114

115115
## References

src/pages/patterns/login-pattern/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ using logos for alternative logins. Examples of brand guidelines for a few
153153
commonly used alternative logins include:
154154

155155
- [Azure brand guidelines](https://docs.microsoft.com/en-us/azure/active-directory/develop/howto-add-branding-in-azure-ad-apps)
156-
- [Github brand guidelines](https://github.com/logos)
156+
- [GitHub brand guidelines](https://github.com/logos)
157157
- [Google brand guidelines](https://developers.google.com/identity/branding-guidelines)
158158

159159
<Row>

0 commit comments

Comments
 (0)