Skip to content

Commit a21f694

Browse files
authored
chore(docs): 🧹 Fix case of GitHub and JavaScript (#22217)
1 parent 5ea48de commit a21f694

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

docs/blog/2020-02-11-founding-organizations/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ And when founding organizations aren’t able to build strong businesses, or the
2929

3030
A question that’s frequently discussed in the web development community is how to make open-source maintainable. Some examples:
3131

32-
- Henry Zhu, the lead maintainer of Babel, one of the most-depended-on projects in the Javascript ecosystem, until 2017 was [working on Babel in his free-time](https://www.henryzoo.com/leaving-behance/) while working a full-time job.
32+
- Henry Zhu, the lead maintainer of Babel, one of the most-depended-on projects in the JavaScript ecosystem, until 2017 was [working on Babel in his free-time](https://www.henryzoo.com/leaving-behance/) while working a full-time job.
3333
- Tobias Koppers, the lead maintainer of webpack, another of the most depended-upon projects in the JavaScript ecosystem, around the same time [openly solicited sponsors](http://www.cross-platform-blog.com/tools/interview-with-webpack-author-tobias-koppers/) in public interviews to fund himself rather than taking freelance work.
3434

3535
Open source is key infrastructure: for comparison, imagine if the lead mechanic on the Brooklyn Bridge had to work on it in his spare time, or hustle for contracts!

docs/docs/deploying-to-cloudflare-workers.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,11 @@ wrangler publish
8181

8282
Now your site is available at gatsby-project.subdomain.workers.dev!
8383

84-
5. CI with Github Actions
84+
5. CI with GitHub Actions
8585

86-
Use wrangler's Github action [plugin](https://github.com/cloudflare/wrangler-action) to automatically deploy to Workers every time you push to master.
86+
Use wrangler's GitHub action [plugin](https://github.com/cloudflare/wrangler-action) to automatically deploy to Workers every time you push to master.
8787

88-
Once Github Actions is enabled on your repo, add a file to your project's root called `.github/workflows/main.yml` with the contents:
88+
Once GitHub Actions is enabled on your repo, add a file to your project's root called `.github/workflows/main.yml` with the contents:
8989

9090
```
9191
name: Deploy production site
@@ -116,7 +116,7 @@ jobs:
116116
environment: "production"
117117
```
118118

119-
Set up `CF_API_TOKEN` in Github secrets with appropriate values from [Quick Start](https://developers.cloudflare.com/workers/quickstart/#configure).
119+
Set up `CF_API_TOKEN` in GitHub secrets with appropriate values from [Quick Start](https://developers.cloudflare.com/workers/quickstart/#configure).
120120

121121
## Additional resources
122122

examples/recipe-linking-between-pages/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Run the Cypress integration tests to make sure everything still works.
2727
npm test
2828
```
2929

30-
This will start the Cypress app to inspect tests in more detail. You can also run them in a single-run for Continuous Integration (e.g. on a Github PR):
30+
This will start the Cypress app to inspect tests in more detail. You can also run them in a single-run for Continuous Integration (e.g. on a GitHub PR):
3131

3232
```
3333
npm run test:ci

examples/using-square-payments/src/components/paymentForm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ export default class PaymentForm extends Component {
148148
},
149149
cardNonceResponseReceived: (errors, nonce, cardData) => {
150150
if (errors) {
151-
// Log errors from nonce generation to the Javascript console
151+
// Log errors from nonce generation to the JavaScript console
152152
console.log("Encountered errors:")
153153
errors.forEach(function(error) {
154154
console.log(" " + error.message)

0 commit comments

Comments
 (0)