Skip to content

Commit d868500

Browse files
fix(curriculum): correct GitHub capitalization (freeCodeCamp#60271)
1 parent cbd9064 commit d868500

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

curriculum/challenges/english/06-quality-assurance/advanced-node-and-express/implementation-of-social-authentication-ii.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dashedName: implementation-of-social-authentication-ii
88

99
# --description--
1010

11-
The last part of setting up your GitHub authentication is to create the strategy itself. `passport-github@~1.1.0` has already been added as a dependency, so require it in your `auth.js` file as `GithubStrategy` like this: `const GitHubStrategy = require('passport-github').Strategy;`. Do not forget to require and configure `dotenv` to use your environment variables.
11+
The last part of setting up your GitHub authentication is to create the strategy itself. `passport-github@~1.1.0` has already been added as a dependency, so require it in your `auth.js` file as `GitHubStrategy` like this: `const GitHubStrategy = require('passport-github').Strategy;`. Do not forget to require and configure `dotenv` to use your environment variables.
1212

1313
To set up the GitHub strategy, you have to tell Passport to use an instantiated `GitHubStrategy`, which accepts 2 arguments: an object (containing `clientID`, `clientSecret`, and `callbackURL`) and a function to be called when a user is successfully authenticated, which will determine if the user is new and what fields to save initially in the user's database object. This is common across many strategies, but some may require more information as outlined in that specific strategy's GitHub README. For example, Google requires a *scope* as well which determines what kind of information your request is asking to be returned and asks the user to approve such access.
1414

curriculum/challenges/english/25-front-end-development/lecture-working-with-code-editors-and-ides/672d26269456511aa3db614d.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ The lecture lists several cloud-based options, but one popular editor is primari
102102

103103
---
104104

105-
Github Codespaces
105+
GitHub Codespaces
106106

107107
### --feedback--
108108

curriculum/challenges/english/25-front-end-development/lecture-working-with-code-editors-and-ides/672d457bcdd8b350ec2b6254.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ _Error Lens_ will help you catch any highlighted errors in your code. Rather tha
2222

2323
_Indent Rainbow_ adds color to your different levels of indentation. In combination with VS Code's native bracket pair colorization, this can dramatically help identify what scope your code is in.
2424

25-
Or maybe you're looking for something a bit more practical? Consider an AI assistant, like _Github Copilot_ or _Tabnine_, to offer you inline suggestions as you are writing your code.
25+
Or maybe you're looking for something a bit more practical? Consider an AI assistant, like _GitHub Copilot_ or _Tabnine_, to offer you inline suggestions as you are writing your code.
2626

2727
An icon pack, such as _VS Code Great Icons_, can help make your file tree cleaner and easier to parse at a glance. And an extension like _Colorize_ can help you understand the values in your CSS properties.
2828

curriculum/challenges/english/25-front-end-development/quiz-computer-basics/66ed8fb9f45ce3ece4053eac.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ Microsoft Edge.
139139

140140
---
141141

142-
Github
142+
GitHub
143143

144144
#### --answer--
145145

0 commit comments

Comments
 (0)