Skip to content

Commit

Permalink
Improve comments
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-wratt committed Apr 4, 2024
1 parent 44f0c33 commit 3d0689e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types/api/credentials-exchange.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ import { Cache } from "./cache";

export interface CredentialsExchange {
/**
* Modify the user's login access, such as by rejecting the login attempt.
* Modify the access, such as by rejecting the exchange attempt.
*/
readonly access: {
/**
* Mark the current login attempt as denied. This will prevent the end-user from completing the login flow. This will NOT cancel other user-related side effects (such as metadata changes) requested by this Action. The login flow will immediately stop following the completion of this action and no further Actions will be executed.
* Mark the current exchange attempt as denied. This will prevent the initiating party from completing the exchange flow.
*/
deny(code: string, reason: string): CredentialsExchange;
};
Expand Down

0 comments on commit 3d0689e

Please sign in to comment.