Skip to content

Commit

Permalink
Remove unnecessary whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
brianhelba authored Jan 22, 2025
1 parent 2318da5 commit 62b1e51
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: Tests
on:
push:
branches:
- master # although master is push protected we still keep it
- master # although master is push protected we still keep it
- development
pull_request: # runs on all PR
branches-ignore:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Please carefully consult the documentation while updating.
* fix: Changed 'hasOwnProperty' call in Response
* docs: Ensure accessTokenExpiresAt is required
* docs: Add missing notice of breaking change for accessExpireLifetime to migration guide
* docs: Correct tokens time scale for 2.x to 3.x migration guide
* docs: Correct tokens time scale for 2.x to 3.x migration guide
* readme: Update Slack badge and link
* readme: Fix link to RFC6750 standard

Expand Down
2 changes: 1 addition & 1 deletion lib/handlers/authorize-handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const responseTypes = {
* Constructor.
*/

class AuthorizeHandler {
class AuthorizeHandler {
constructor (options) {
options = options || {};

Expand Down
2 changes: 1 addition & 1 deletion lib/token-types/bearer-token-type.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const InvalidArgumentError = require('../errors/invalid-argument-error');
* Constructor.
*/

class BearerTokenType {
class BearerTokenType {
constructor(accessToken, accessTokenLifetime, refreshToken, scope, customAttributes) {
if (!accessToken) {
throw new InvalidArgumentError('Missing parameter: `accessToken`');
Expand Down

0 comments on commit 62b1e51

Please sign in to comment.