Skip to content

Commit

Permalink
fix: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
iuioiua authored and cmd-johnson committed Sep 27, 2023
1 parent 636f137 commit c8895c6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/authorization_code_grant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ interface AuthorizationUriOptionsWithPKCE {
/**
* Scopes to request with the authorization request.
*
* If an array is passed, it is concatinated using spaces as per
* If an array is passed, it is concatenated using spaces as per
* https://tools.ietf.org/html/rfc6749#section-3.3
*/
scope?: string | string[];
Expand Down
2 changes: 1 addition & 1 deletion src/client_credentials_grant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export interface ClientCredentialsTokenOptions {
/**
* Scopes to request with the authorization request.
*
* If an array is passed, it is concatinated using spaces as per
* If an array is passed, it is concatenated using spaces as per
* https://tools.ietf.org/html/rfc6749#section-3.3
*/
scope?: string | string[];
Expand Down
2 changes: 1 addition & 1 deletion src/implicit_grant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export interface ImplicitUriOptions {
/**
* Scopes to request with the authorization request.
*
* If an array is passed, it is concatinated using spaces as per
* If an array is passed, it is concatenated using spaces as per
* https://tools.ietf.org/html/rfc6749#section-3.3
*/
scope?: string | string[];
Expand Down
2 changes: 1 addition & 1 deletion src/resource_owner_password_credentials.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export interface ResourceOwnerPasswordCredentialsTokenOptions {
/**
* Scopes to request with the authorization request.
*
* If an array is passed, it is concatinated using spaces as per
* If an array is passed, it is concatenated using spaces as per
* https://tools.ietf.org/html/rfc6749#section-3.3
*/
scope?: string | string[];
Expand Down

0 comments on commit c8895c6

Please sign in to comment.