Skip to content

Commit

Permalink
Fix typo in github-authentication/github.ts (#129100)
Browse files Browse the repository at this point in the history
  • Loading branch information
mfroeh committed Jul 21, 2021
1 parent d3d46dc commit 7157982
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/github-authentication/src/github.ts
Expand Up @@ -86,7 +86,7 @@ export class GitHubAuthenticationProvider implements vscode.AuthenticationProvid
try {
await this._githubServer.getUserInfo(session.accessToken);
this.afterTokenLoad(session.accessToken);
Logger.info(`Verified sesion with the following scopes: ${session.scopes}`);
Logger.info(`Verified session with the following scopes: ${session.scopes}`);
verifiedSessions.push(session);
} catch (e) {
// Remove sessions that return unauthorized response
Expand Down

0 comments on commit 7157982

Please sign in to comment.