Skip to content

Commit ff0c27b

Browse files
committed
chore: update doc typo
1 parent d9b0d2c commit ff0c27b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/sdk/oauth2-flows/AuthCodeAbstract.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export abstract class AuthCodeAbstract {
8888
* Abstract method will implement logic in child classes for refreshing access token
8989
* using refresh token available in current session.
9090
* @param {SessionManager} sessionManager
91-
* @param {boolean} [commitToSession=true] - Optional parameter, determines whether to commit the refresh tokens to the session. Defaults to true.
91+
* @param {boolean} [commitToSession=true] - Optional parameter, determines whether to commit the refreshed tokens to the session. Defaults to true.
9292
* @returns {Promise<OAuth2CodeExchangeResponse>}
9393
*/
9494
public abstract refreshTokens(

lib/sdk/oauth2-flows/AuthCodeWithPKCE.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export class AuthCodeWithPKCE extends AuthCodeAbstract {
6969
* `AuthCodeAbstract` parent class, see corresponding comment in parent class for
7070
* further explanation.
7171
* @param {SessionManager} sessionManager
72-
* @param {boolean} [commitToSession=true] - Optional parameter, determines whether to commit the refresh tokens to the session. Defaults to true.
72+
* @param {boolean} [commitToSession=true] - Optional parameter, determines whether to commit the refreshed tokens to the session. Defaults to true.
7373
* @returns {Promise<OAuth2CodeExchangeResponse>}
7474
*/
7575
public async refreshTokens(

lib/sdk/oauth2-flows/AuthorizationCode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export class AuthorizationCode extends AuthCodeAbstract {
5454
* `AuthCodeAbstract` parent class, see corresponding comment in parent class for
5555
* further explanation.
5656
* @param {SessionManager} sessionManager
57-
* @param {boolean} [commitToSession=true] - Optional parameter, determines whether to commit the refresh tokens to the session. Defaults to true.
57+
* @param {boolean} [commitToSession=true] - Optional parameter, determines whether to commit the refreshed tokens to the session. Defaults to true.
5858
* @returns {Promise<OAuth2CodeExchangeResponse>}
5959
*/
6060
public async refreshTokens(

0 commit comments

Comments
 (0)