Skip to content

Commit 62b1e51

Browse files
authored
Remove unnecessary whitespace
1 parent 2318da5 commit 62b1e51

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/tests.yml

+1-1
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

+1-1
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

+1-1
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

+1-1
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)