Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4e40cc8

Browse files
authoredFeb 3, 2025··
Merge pull request #332 from brianhelba/class-space
Remove unnecessary whitespace
2 parents 2318da5 + 62b1e51 commit 4e40cc8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
 

‎.github/workflows/tests.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: Tests
66
on:
77
push:
88
branches:
9-
- master # although master is push protected we still keep it
9+
- master # although master is push protected we still keep it
1010
- development
1111
pull_request: # runs on all PR
1212
branches-ignore:

‎CHANGELOG.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Please carefully consult the documentation while updating.
8787
* fix: Changed 'hasOwnProperty' call in Response
8888
* docs: Ensure accessTokenExpiresAt is required
8989
* docs: Add missing notice of breaking change for accessExpireLifetime to migration guide
90-
* docs: Correct tokens time scale for 2.x to 3.x migration guide
90+
* docs: Correct tokens time scale for 2.x to 3.x migration guide
9191
* readme: Update Slack badge and link
9292
* readme: Fix link to RFC6750 standard
9393

‎lib/handlers/authorize-handler.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const responseTypes = {
3535
* Constructor.
3636
*/
3737

38-
class AuthorizeHandler {
38+
class AuthorizeHandler {
3939
constructor (options) {
4040
options = options || {};
4141

‎lib/token-types/bearer-token-type.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const InvalidArgumentError = require('../errors/invalid-argument-error');
1010
* Constructor.
1111
*/
1212

13-
class BearerTokenType {
13+
class BearerTokenType {
1414
constructor(accessToken, accessTokenLifetime, refreshToken, scope, customAttributes) {
1515
if (!accessToken) {
1616
throw new InvalidArgumentError('Missing parameter: `accessToken`');

0 commit comments

Comments
 (0)
Please sign in to comment.